/* ===== v49 Local Cairo font binding ===== */
@font-face{
  font-family:"Cairo Local";
  src:url("./fonts/Cairo-Regular.ttf") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Cairo Local";
  src:url("./fonts/Cairo-Medium.ttf") format("truetype");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Cairo Local";
  src:url("./fonts/Cairo-Bold.ttf") format("truetype");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

*{
  box-sizing:border-box;
}

:root{
  --bg:#f4f7fc;
  --surface:#ffffff;
  --surface-soft:#f6f7f9;
  --text:#121823;
  --muted:#616b78;
  --line:#e1e6ed;
  --primary:#4b5563;
  --primary-dark:#374151;
  --primary-soft:#eef1f5;
  --success:#16a34a;
  --shadow:0 16px 40px rgba(15,23,42,.08);
  --shadow-soft:0 10px 24px rgba(15,23,42,.05);
  --radius:20px;
  --container:min(1140px, calc(100% - 28px));
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"IBM Plex Sans Arabic",Tahoma,Arial,sans-serif;
  background:
    radial-gradient(circle at top right, rgba(75,85,99,.06), transparent 24%),
    linear-gradient(180deg,#f7f8fa 0%, #eef1f5 100%);
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
}

.container{
  width:var(--container);
  margin:auto;
}

.section{
  padding:82px 0;
}

.section-soft{
  background:linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(239,246,255,.55) 100%);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--text);
  font-size:13px;
  font-weight:700;
  margin-bottom:14px;
}

.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:0 20px;
  border-radius:14px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:700;
  transition:.2s ease;
  cursor:pointer;
}

.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 12px 24px rgba(75,85,99,.18);
}

.btn-primary:hover{
  background:var(--primary-dark);
  transform:translateY(-1px);
}

.btn-secondary{
  background:#fff;
  color:var(--text);
  border-color:var(--line);
}

.btn-secondary:hover{
  background:#f9fbff;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(180deg, rgba(94,101,112,.97), rgba(77,84,95,.97));
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 28px rgba(15,23,42,.12);
}

.header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.header-main{
  display:flex;
  align-items:center;
  gap:22px;
  min-width:0;
  flex:1;
}

.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.brand-logo{
  display:block;
  width:250px;
  max-width:100%;
  height:auto;
  object-fit:contain;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  min-width:0;
}

.main-nav a{
  padding:8px 12px;
  border-radius:12px;
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:700;
  transition:.22s ease;
  white-space:nowrap;
}

.main-nav a:hover,
.main-nav a.is-active{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.header-side{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.header-account-btn{
  min-height:46px;
  padding:0 18px;
  font-size:14px;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.15);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  flex-shrink:0;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#ffffff;
  border-radius:99px;
}

.mobile-menu{
  border-top:1px solid rgba(255,255,255,.12);
  background:rgba(82,89,100,.98);
}

.mobile-menu-inner{
  display:grid;
  gap:10px;
  padding:14px 0 18px;
}

.mobile-menu-inner a{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:14px;
  padding:14px 16px;
  font-weight:700;
}

.mobile-cta{
  background:#ffffff !important;
  color:#374151 !important;
  border-color:rgba(255,255,255,.20) !important;
}

.hero-section{
  padding:40px 0 52px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:32px;
  align-items:center;
}

.hero-copy h1{
  font-size:clamp(36px,5.6vw,64px);
  line-height:1.08;
  margin:0 0 16px;
  letter-spacing:-.03em;
}

.hero-copy h1 span{
  color:var(--text);
}

.hero-copy p{
  color:var(--muted);
  font-size:18px;
  line-height:1.95;
  margin:0 0 18px;
  max-width:60ch;
}

.hero-highlight{
  color:var(--primary);
  font-size:1.12em;
  font-weight:800;
}

.hero-progress-box{
  margin-bottom:20px;
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.hero-progress-label{
  font-size:13px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:12px;
}

.hero-progress-steps{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hero-progress-step{
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  transition:.25s ease;
}

.hero-progress-step.is-active{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
  box-shadow:0 10px 24px rgba(75,85,99,.18);
}

.hero-visual{
  position:relative;
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.hero-image-note{
  margin-bottom:16px;
  display:grid;
  gap:6px;
}

.hero-image-note strong{
  font-size:17px;
  font-weight:800;
  color:var(--text);
}

.hero-image-note span{
  font-size:15px;
  line-height:1.9;
  color:var(--muted);
}

.hero-image-wrap{
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  border:1px solid var(--line);
  border-radius:30px;
  padding:18px;
  box-shadow:var(--shadow);
}

.hero-image{
  display:block;
  width:100%;
  height:auto;
  border-radius:22px;
  object-fit:cover;
}

.section-head{
  max-width:760px;
  margin:0 auto 30px;
  text-align:center;
}

.section-head h2{
  font-size:clamp(28px,4vw,42px);
  margin:0 0 12px;
}

.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.95;
}

.models-showcase{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.model-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:var(--shadow-soft);
  transition:.2s ease;
  overflow:hidden;
}

.model-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.model-card-featured{
  border-color:#d7dde5;
  box-shadow:0 16px 40px rgba(75,85,99,.10);
}

.model-preview{
  background:linear-gradient(180deg,#f7f8fa,#edf1f5);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
}

.model-preview-top{
  display:flex;
  align-items:center;
  gap:6px;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.65);
}

.preview-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#c5d4ee;
}

.model-preview-body{
  min-height:230px;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.preview-services{
  background:
    radial-gradient(circle at top right, rgba(75,85,99,.10), transparent 30%),
    linear-gradient(180deg,#f7f8fa 0%, #eef1f5 100%);
}

.preview-restaurant{
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.13), transparent 30%),
    linear-gradient(180deg,#fffaf2 0%, #fff5e6 100%);
}

.preview-products{
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.12), transparent 30%),
    linear-gradient(180deg,#f4fffb 0%, #ecfdf5 100%);
}

.preview-clinic{
  background:
    radial-gradient(circle at top right, rgba(14,165,233,.12), transparent 30%),
    linear-gradient(180deg,#f3fbff 0%, #eef8ff 100%);
}

.preview-badge{
  display:inline-flex;
  width:max-content;
  align-items:center;
  justify-content:center;
  padding:7px 11px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(255,255,255,.8);
  color:#334155;
  font-size:11px;
  font-weight:800;
}

.preview-title{
  font-size:24px;
  font-weight:800;
  line-height:1.25;
  color:#0f172a;
  margin:14px 0 10px;
}

.preview-lines{
  display:grid;
  gap:8px;
}

.preview-lines span{
  display:block;
  height:10px;
  border-radius:999px;
  background:rgba(148,163,184,.22);
}

.preview-lines span:nth-child(1){width:88%}
.preview-lines span:nth-child(2){width:76%}
.preview-lines span:nth-child(3){width:62%}

.preview-blocks,
.preview-food-grid,
.preview-clinic-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:16px;
}

.preview-blocks div,
.preview-food-grid div,
.preview-clinic-grid div{
  height:68px;
  border-radius:14px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(231,237,245,.85);
}

.preview-product-list{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.preview-product-list div{
  height:42px;
  border-radius:12px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(16,185,129,.12);
}

.model-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.model-tag,
.model-type{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.model-tag{
  background:var(--primary-soft);
  color:var(--primary);
}

.model-type{
  background:#f8fafc;
  color:var(--muted);
  border:1px solid var(--line);
}

.model-card h3{
  font-size:25px;
  margin:0 0 8px;
}

.model-card p{
  color:var(--muted);
  line-height:1.9;
  margin:0 0 16px;
}

.model-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.model-meta span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 11px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

.model-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.model-actions .btn{
  width:100%;
}

.services-grid,
.steps-grid,
.pricing-grid{
  display:grid;
  gap:18px;
}

.services-grid{
  grid-template-columns:repeat(3,1fr);
}

.steps-grid{
  grid-template-columns:repeat(4,1fr);
}

.pricing-grid{
  grid-template-columns:repeat(3,1fr);
}

.service-card,
.step-card,
.pricing-card,
.portfolio-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow-soft);
  transition:.2s ease;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.service-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--primary-soft);
  color:var(--primary);
  font-size:24px;
  font-weight:900;
  margin-bottom:14px;
}

.service-card h3,
.step-card h3{
  font-size:22px;
  margin:0 0 8px;
}

.service-card p,
.step-card p{
  color:var(--muted);
  line-height:1.9;
  margin:0;
}

.step-no{
  font-size:34px;
  font-weight:900;
  color:#d1ddf5;
  margin-bottom:10px;
}

.pricing-card{
  display:flex;
  flex-direction:column;
}

.pricing-card-featured{
  border-color:#d7dde5;
  box-shadow:0 16px 40px rgba(75,85,99,.10);
}

.pricing-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  background:#f8fafc;
  color:var(--muted);
  border:1px solid var(--line);
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.pricing-badge.featured{
  background:var(--primary-soft);
  color:var(--text);
  border-color:#d9dfe7;
}

.pricing-card h3{
  font-size:24px;
  margin:0 0 10px;
}

.price{
  font-size:34px;
  font-weight:800;
  margin-bottom:10px;
}

.price small{
  font-size:16px;
  color:var(--muted);
}

.price-note{
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
  margin:0 0 16px;
}

.pricing-card ul{
  list-style:none;
  padding:0;
  margin:0 0 20px;
  display:grid;
  gap:10px;
}

.pricing-card li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#273142;
}

.pricing-card li::before{
  content:"✓";
  color:var(--success);
  font-weight:900;
}

.pricing-card .btn{
  width:100%;
  margin-top:auto;
}

.portfolio-slider{
  position:relative;
}

.portfolio-track-wrap{
  overflow:hidden;
}

.portfolio-track{
  display:flex;
  direction:ltr;
  transition:transform .45s ease;
  will-change:transform;
}

.portfolio-slide{
  min-width:100%;
  padding:0 2px;
  direction:rtl;
}

.portfolio-card{
  padding:18px;
}

.portfolio-preview{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
}

.portfolio-preview-service{
  background:linear-gradient(180deg,#f8fbff,#eff6ff);
}

.portfolio-preview-coffee{
  background:linear-gradient(180deg,#fffaf2,#fff3e0);
}

.portfolio-preview-clinic{
  background:linear-gradient(180deg,#f3fbff,#eef8ff);
}

.portfolio-preview-top{
  display:flex;
  gap:6px;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.55);
}

.portfolio-preview-top span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#bfd0e8;
}

.portfolio-screen{
  padding:18px;
}

.portfolio-line{
  height:10px;
  border-radius:999px;
  background:rgba(100,116,139,.18);
  margin-bottom:10px;
}

.portfolio-line.long{width:86%}
.portfolio-line.medium{width:62%}
.portfolio-line.short{width:45%}

.portfolio-boxes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}

.portfolio-boxes.two{
  grid-template-columns:repeat(2,1fr);
}

.portfolio-boxes div,
.portfolio-food-grid div{
  height:72px;
  border-radius:14px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(231,237,245,.9);
}

.portfolio-food-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:14px;
}

.portfolio-content{
  display:grid;
  gap:12px;
}

.portfolio-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.portfolio-head h3{
  margin:0;
  font-size:22px;
}

.portfolio-head span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--text);
  font-size:12px;
  font-weight:800;
}

.portfolio-content p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}

.portfolio-quote{
  margin:0;
  padding:14px 16px;
  border-radius:16px;
  background:linear-gradient(180deg,#f7f8fa,#eef1f5);
  border:1px solid #d9dfe7;
  color:#374151;
  line-height:1.9;
  font-size:14px;
  font-weight:700;
}

.portfolio-content .btn{
  width:100%;
}

.portfolio-nav{
  position:absolute;
  top:38%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:14px;
  background:#fff;
  color:#111827;
  box-shadow:0 10px 24px rgba(15,23,42,.10);
  border:1px solid var(--line);
  cursor:pointer;
  z-index:3;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
}

.portfolio-nav:hover{
  background:#f8fbff;
}

.portfolio-nav-prev{
  right:-8px;
}

.portfolio-nav-next{
  left:-8px;
}

.portfolio-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:16px;
}

.portfolio-dots button{
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:#cbd5e1;
  cursor:pointer;
  transition:.2s ease;
}

.portfolio-dots button.is-active{
  width:28px;
  border-radius:999px;
  background:var(--primary);
}

.contact-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  padding:30px;
  background:linear-gradient(135deg,#ffffff,#f8fbff);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.contact-copy{
  max-width:700px;
}

.contact-copy h2{
  font-size:clamp(28px,4vw,40px);
  margin:0;
}

.contact-copy p{
  color:var(--muted);
  line-height:1.95;
  margin:0;
}

.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  min-width:fit-content;
}

.site-footer{
  padding:24px 0 34px;
  border-top:1px solid rgba(231,237,245,.9);
  background:rgba(255,255,255,.78);
}

.footer-inner{
  text-align:center;
}

.footer-inner p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

/* سلايدر النماذج */
.slider-wrapper{
  position:relative;
  margin-top:32px;
}

.slider-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:4px 2px 12px;
  scrollbar-width:none;
}

.slider-track::-webkit-scrollbar{
  display:none;
}

.slider-card{
  min-width:360px;
  max-width:360px;
  flex:0 0 360px;
}

.slider-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:14px;
  background:#fff;
  color:#111827;
  box-shadow:0 10px 24px rgba(15,23,42,.10);
  border:1px solid var(--line);
  cursor:pointer;
  z-index:3;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
}

.slider-nav:hover{
  background:#f8fbff;
}

.slider-nav.prev{
  right:-8px;
}

.slider-nav.next{
  left:-8px;
}

@media (max-width:1000px){
  .hero-grid,
  .models-showcase,
  .services-grid,
  .steps-grid,
  .pricing-grid,
  .contact-box{
    grid-template-columns:1fr;
  }

  .contact-box{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
  }

  .slider-card{
    min-width:320px;
    max-width:320px;
    flex-basis:320px;
  }

  .header-inner{
    gap:12px;
  }

  .header-main{
    gap:14px;
  }

  .brand-logo{
    width:215px;
  }
}

@media (max-width:760px){
  .container{
    width:min(100%, calc(100% - 24px));
  }

  .main-nav{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .header-inner{
    min-height:82px;
    gap:24px;
  }

  .header-main{
    flex:1;
    min-width:0;
    justify-content:flex-start;
  }

  .header-side{
    gap:14px;
  }

  .brand-logo{
    width:148px;
  }

  .header-account-btn{
    min-height:42px;
    padding:0 14px;
    font-size:13px;
  }

  .hero-section{
    padding:28px 0 26px;
  }

  .hero-copy h1{
    font-size:38px;
  }

  .hero-copy p{
    font-size:16px;
  }

  .hero-image-note strong{
    font-size:16px;
  }

  .hero-image-note span{
    font-size:14px;
  }

  .hero-progress-steps{
    flex-direction:column;
  }

  .slider-card{
    min-width:86%;
    max-width:86%;
    flex-basis:86%;
  }

  .slider-nav{
    display:none;
  }

  .preview-blocks,
  .preview-food-grid,
  .preview-clinic-grid,
  .model-actions,
  .portfolio-boxes,
  .portfolio-food-grid{
    grid-template-columns:1fr;
  }

  .models-showcase,
  .services-grid,
  .steps-grid,
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:64px 0;
  }

  .contact-actions{
    width:100%;
    flex-direction:column;
  }
}

.hero-copy h1,
.hero-copy p,
.section-head h2,
.section-head p,
.model-card h3,
.model-card p,
.pricing-card h3,
.price-note,
.step-card h3,
.step-card p,
.portfolio-head h3,
.portfolio-content p,
.contact-copy h2,
.contact-copy p,
.service-card h3,
.service-card p,
.pricing-card li,
.hero-image-note strong,
.hero-image-note span{
  color: var(--text);
}

.home-models-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.home-model-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  box-shadow:var(--shadow-soft);
  transition:.2s ease;
}

.home-model-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.home-model-card .model-preview{
  margin-bottom:14px;
}

.home-model-card .model-card-top{
  margin-bottom:8px;
}

.home-model-card h3{
  font-size:20px;
  margin:0 0 8px;
}

.home-model-card p{
  font-size:14px;
  line-height:1.8;
  margin:0 0 14px;
  min-height:66px;
}

.home-model-card .model-actions{
  grid-template-columns:1fr;
}

.models-bottom-action{
  display:flex;
  justify-content:center;
  margin-top:22px;
}

.impression-grid,
.compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.trust-copy h2,
.compare-copy h2{
  font-size:clamp(28px,4vw,42px);
  line-height:1.25;
  margin:0 0 12px;
}

.trust-copy p,
.compare-copy p{
  margin:0 0 18px;
  color:var(--text);
  line-height:1.95;
  font-size:16px;
}

.trust-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.trust-pills span{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-size:13px;
  font-weight:700;
  color:var(--text);
}


.impression-visual{
  position:relative;
}

.impression-canvas{
  position:relative;
  min-height:470px;
  border-radius:32px;
  padding:26px;
  background:
    radial-gradient(circle at 70% 28%, rgba(17,17,17,.05), transparent 28%),
    radial-gradient(circle at 24% 76%, rgba(17,17,17,.035), transparent 24%),
    linear-gradient(180deg,#ffffff,#f4f6f8);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.impression-canvas::before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:24px;
  border:1px solid rgba(17,17,17,.06);
  pointer-events:none;
}

.impression-floating-chip{
  position:absolute;
  top:18px;
  left:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.06);
  font-size:12px;
  font-weight:800;
  color:var(--text);
  z-index:4;
}

.impression-lens{
  position:absolute;
  inset:0;
  z-index:1;
}

.lens-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(17,17,17,.08);
  background:transparent;
}

.lens-ring.ring-one{
  width:340px;
  height:340px;
  right:58px;
  top:58px;
}

.lens-ring.ring-two{
  width:250px;
  height:250px;
  right:103px;
  top:103px;
  border-style:dashed;
  border-color:rgba(17,17,17,.10);
}

.lens-ring.ring-three{
  width:156px;
  height:156px;
  right:150px;
  top:150px;
  border-color:rgba(17,17,17,.12);
}

.lens-cross{
  position:absolute;
  background:rgba(17,17,17,.08);
}

.lens-cross.horizontal{
  width:220px;
  height:1px;
  right:118px;
  top:228px;
}

.lens-cross.vertical{
  width:1px;
  height:220px;
  right:228px;
  top:118px;
}

.focus-panel{
  position:absolute;
  z-index:3;
}

.focus-panel.before{
  width:44%;
  top:110px;
  left:30px;
  transform:rotate(-1.5deg);
  opacity:.62;
}

.focus-panel.after{
  width:56%;
  right:32px;
  top:88px;
}

.focus-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  padding:8px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,17,17,.08);
  font-size:12px;
  font-weight:800;
  color:var(--text);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.focus-window{
  border-radius:26px;
  background:#fff;
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 18px 34px rgba(15,23,42,.08);
  overflow:hidden;
}

.window-bar{
  display:flex;
  gap:7px;
  padding:14px 16px;
  border-bottom:1px solid rgba(17,17,17,.06);
  background:rgba(245,247,250,.9);
}

.window-bar span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#c7ced7;
}

.window-body{
  padding:16px;
}

.window-body.loose{
  display:grid;
  gap:12px;
}

.loose-line{
  height:12px;
  border-radius:999px;
  background:#dadfe5;
}

.loose-line.w-1{ width:82%; }
.loose-line.w-2{ width:58%; }

.loose-cards{
  display:grid;
  grid-template-columns:1fr .76fr;
  gap:10px;
}

.loose-cards span{
  display:block;
  height:88px;
  border-radius:18px;
  background:linear-gradient(180deg,#f8f9fb,#eef1f4);
  border:1px solid rgba(17,17,17,.06);
}

.loose-cards span:last-child{
  transform:translateY(18px);
}

.loose-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.loose-badges span{
  width:66px;
  height:18px;
  border-radius:999px;
  background:#eceff3;
  border:1px solid rgba(17,17,17,.05);
}

.window-body.refined{
  display:grid;
  gap:14px;
}

.refined-hero{
  height:122px;
  border-radius:20px;
  background:
    linear-gradient(135deg, rgba(17,17,17,.12), rgba(17,17,17,.04)),
    linear-gradient(180deg,#f7f8fa,#eef1f4);
  border:1px solid rgba(17,17,17,.06);
}

.refined-lines{
  display:grid;
  gap:9px;
}

.refined-lines span{
  display:block;
  height:10px;
  border-radius:999px;
  background:#d7dde4;
}

.refined-lines .r-1{ width:76%; }
.refined-lines .r-2{ width:54%; }

.refined-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.refined-grid span{
  display:block;
  height:72px;
  border-radius:16px;
  background:#f5f7fa;
  border:1px solid rgba(17,17,17,.06);
}

.refined-pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.refined-pills em{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:68px;
  height:30px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.08);
  background:#fff;
  font-style:normal;
  font-size:12px;
  font-weight:800;
  color:var(--text);
}

.impression-meter{
  position:absolute;
  left:30px;
  right:30px;
  bottom:28px;
  z-index:4;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 12px 24px rgba(15,23,42,.06);
  backdrop-filter:blur(8px);
}

.impression-meter strong{
  display:block;
  margin-bottom:12px;
  font-size:15px;
  font-weight:800;
  color:var(--text);
}

.meter-track{
  position:relative;
  height:12px;
  border-radius:999px;
  background:#eceff3;
  overflow:hidden;
  border:1px solid rgba(17,17,17,.05);
}

.meter-base{
  position:absolute;
  inset:0;
  display:block;
  background:linear-gradient(90deg,#d5dae1,#eceff3);
}

.meter-progress{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:68%;
  display:block;
  background:linear-gradient(90deg,#111111,#3b3b3b,#7a7a7a);
  border-radius:999px;
  box-shadow:0 8px 18px rgba(17,17,17,.18);
}

.meter-notes{
  margin-top:10px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
}

.compare-board{
  background:linear-gradient(180deg,#ffffff,#f5f7fa);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:18px;
}

.compare-board-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:16px;
  align-items:stretch;
}

.compare-divider{
  width:1px;
  background:linear-gradient(180deg,transparent,#d7dce3,transparent);
}

.compare-side{
  border-radius:22px;
  border:1px solid var(--line);
  padding:18px;
  background:#fff;
}

.compare-side.before{
  background:linear-gradient(180deg,#fafbfc,#f4f6f8);
}

.compare-side.after{
  background:linear-gradient(180deg,#ffffff,#f7f8fa);
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.compare-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:#f2f4f7;
  border:1px solid var(--line);
  font-size:12px;
  font-weight:800;
  color:var(--text);
  margin-bottom:14px;
}

.compare-side h3{
  margin:0 0 8px;
  font-size:24px;
  color:var(--text);
}

.compare-side p{
  margin:0 0 16px;
  line-height:1.85;
  color:var(--text);
}

.compare-scene{
  display:grid;
  gap:10px;
}

.compare-banner{
  height:48px;
  border-radius:14px;
  background:#dde2e8;
}

.compare-side.before .compare-banner{
  width:72%;
}

.compare-side.after .compare-banner{
  width:100%;
  background:#616975;
}

.compare-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.compare-columns div,
.compare-list div{
  border-radius:14px;
  border:1px solid var(--line);
}

.compare-side.before .compare-columns div{
  height:90px;
  background:#eef1f4;
}

.compare-side.after .compare-columns div{
  height:90px;
  background:#f6f8fa;
}

.compare-list{
  display:grid;
  gap:10px;
}

.compare-side.before .compare-list div:nth-child(1){width:88%}
.compare-side.before .compare-list div:nth-child(2){width:62%}
.compare-side.before .compare-list div:nth-child(3){width:74%}
.compare-side.after .compare-list div:nth-child(1){width:100%}
.compare-side.after .compare-list div:nth-child(2){width:86%}
.compare-side.after .compare-list div:nth-child(3){width:78%}

.compare-list div{height:16px;background:#dde2e8;}
.compare-side.after .compare-list div{background:#cfd5dc;}

.compare-points{
  display:grid;
  gap:8px;
}

.compare-points span{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  color:var(--text);
}

.compare-points span::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#6b7280;
}

@media (max-width:1000px){
  .home-models-grid,
  .impression-grid,
  .compare-grid,
  .compare-board-inner{
    grid-template-columns:1fr;
  }

  .compare-divider{display:none;}
}

@media (max-width:760px){
  .brand-logo{width:118px;}
  .home-model-card p{min-height:auto;}
  .presence-card{
    position:relative;
    inset:auto;
    width:100%;
    transform:none !important;
    opacity:1;
  }
   .impression-canvas{
    min-height:auto;
    padding:18px;
  }

  .impression-floating-chip{
    position:static;
    margin-bottom:14px;
    width:max-content;
  }

  .impression-lens{
    display:none;
  }

  .focus-panel{
    position:static;
    width:100% !important;
    transform:none !important;
    opacity:1 !important;
    margin-bottom:14px;
  }

  .focus-window{
    border-radius:20px;
  }

  .loose-cards,
  .refined-grid{
    grid-template-columns:1fr;
  }

  .impression-meter{
    position:static;
    left:auto;
    right:auto;
    bottom:auto;
  }
  .compare-board{padding:14px;}
  .compare-side h3{font-size:20px;}
}


/* Premium Impression Upgrade */
.impression-canvas{
  min-height: 560px !important;
  padding: 24px !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 72% 24%, rgba(17,17,17,.07), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(17,17,17,.045), transparent 20%),
    linear-gradient(180deg,#ffffff 0%, #f2f4f7 100%) !important;
  overflow: hidden;
}

.impression-canvas::after{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,0));
  pointer-events:none;
}

.impression-premium{
  position:relative;
  min-height:512px;
}

.premium-badge{
  position:absolute;
  top:0;
  right:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
  font-size:12px;
  font-weight:800;
  color:var(--text);
  z-index:6;
}

.premium-orbit{
  position:absolute;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.08);
  pointer-events:none;
}

.orbit-a{
  width:360px;
  height:360px;
  left:34px;
  top:58px;
  opacity:.62;
}

.orbit-b{
  width:290px;
  height:290px;
  left:68px;
  top:92px;
  border-style:dashed;
  opacity:.54;
}

.orbit-c{
  width:176px;
  height:176px;
  left:126px;
  top:150px;
  opacity:.48;
}

.premium-grid-line{
  position:absolute;
  background:rgba(17,17,17,.07);
  pointer-events:none;
}

.line-h{
  width:220px;
  height:1px;
  left:104px;
  top:238px;
}

.line-v{
  width:1px;
  height:220px;
  left:214px;
  top:128px;
}

.premium-before-stack{
  position:absolute;
  left:8px;
  top:108px;
  width:36%;
  min-width:245px;
  z-index:2;
}

.stack-label{
  position:absolute;
  top:-18px;
  right:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 8px 20px rgba(15,23,42,.06);
  font-size:12px;
  font-weight:800;
  color:var(--text);
  z-index:3;
}

.stack-label.after{
  right:auto;
  left:28px;
}

.ghost-card{
  position:absolute;
  inset:auto;
  width:100%;
  border-radius:24px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 16px 34px rgba(15,23,42,.07);
  overflow:hidden;
  backdrop-filter: blur(6px);
}

.ghost-back{
  top:18px;
  transform:rotate(-8deg) scale(.95);
  opacity:.48;
}

.ghost-front{
  top:72px;
  transform:rotate(-3deg);
  opacity:.78;
}

.ghost-bar,
.premium-frame-top{
  display:flex;
  gap:7px;
  padding:14px 16px;
  border-bottom:1px solid rgba(17,17,17,.06);
  background:rgba(245,247,250,.88);
}

.ghost-bar span,
.premium-frame-top span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#c6cdd6;
}

.ghost-body{
  padding:16px;
  display:grid;
  gap:12px;
}

.ghost-line{
  height:11px;
  border-radius:999px;
  background:#d8dee5;
}
.ghost-line.g1{width:78%;}
.ghost-line.g2{width:52%;}
.ghost-line.g3{width:66%;}

.ghost-boxes{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.ghost-boxes span{
  display:block;
  height:66px;
  border-radius:16px;
  background:linear-gradient(180deg,#f8f9fb,#eef1f4);
  border:1px solid rgba(17,17,17,.06);
}

.ghost-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.ghost-badges span{
  width:70px;
  height:18px;
  border-radius:999px;
  background:#eceff3;
  border:1px solid rgba(17,17,17,.05);
}

.premium-main-frame{
  position:absolute;
  right:6px;
  top:84px;
  width:61%;
  min-height:332px;
  border-radius:30px;
  background:linear-gradient(180deg,#ffffff,#f5f7fa);
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 26px 48px rgba(15,23,42,.12);
  overflow:hidden;
  z-index:4;
}

.premium-main-frame::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 78% 22%, rgba(17,17,17,.06), transparent 28%);
  pointer-events:none;
}

.premium-frame-layout{
  display:grid;
  grid-template-columns:84px 1fr;
  gap:14px;
  padding:18px;
  position:relative;
  z-index:2;
}

.premium-side-rail{
  display:grid;
  align-content:start;
  gap:10px;
  padding-top:10px;
}

.rail-mark{
  height:14px;
  border-radius:999px;
  background:#e5e9ee;
}

.rail-mark.big{height:82px; border-radius:18px;}
.rail-pulse{
  margin-top:6px;
  width:100%;
  height:48px;
  border-radius:16px;
  background:linear-gradient(180deg,#111111,#3f434a);
  box-shadow:0 10px 20px rgba(17,17,17,.12);
}

.premium-core{
  display:grid;
  gap:14px;
}

.premium-hero-card{
  height:132px;
  border-radius:22px;
  background:
    linear-gradient(135deg, rgba(17,17,17,.18), rgba(17,17,17,.04)),
    linear-gradient(180deg,#f7f8fa,#edf1f5);
  border:1px solid rgba(17,17,17,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.premium-copy-lines{
  display:grid;
  gap:9px;
}

.premium-copy-lines span{
  display:block;
  height:11px;
  border-radius:999px;
  background:#d7dde4;
}

.premium-copy-lines .pc-1{width:78%;}
.premium-copy-lines .pc-2{width:56%;}

.premium-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.premium-card-grid span{
  display:block;
  height:78px;
  border-radius:18px;
  background:#fafbfc;
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.premium-pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.premium-pills em{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:76px;
  height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,17,17,.08);
  font-style:normal;
  font-size:12px;
  font-weight:800;
  color:var(--text);
}

.premium-note{
  position:absolute;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 10px 22px rgba(15,23,42,.06);
  font-size:11px;
  font-weight:800;
  color:var(--text);
  z-index:5;
}

.note-top{
  top:74px;
  left:26px;
}
.note-mid{
  top:198px;
  right:22px;
}
.note-low{
  bottom:84px;
  left:64px;
}

.premium-spot{
  position:absolute;
  width:180px;
  height:180px;
  left:-32px;
  bottom:-34px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(17,17,17,.10), rgba(17,17,17,0));
  pointer-events:none;
}

.premium-impact-strip{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  padding-top:18px;
  z-index:5;
}

.impact-item{
  padding:18px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 12px 24px rgba(15,23,42,.06);
  backdrop-filter:blur(8px);
}

.impact-item strong{
  display:block;
  margin-bottom:6px;
  font-size:16px;
  font-weight:800;
  color:var(--text);
}

.impact-item span{
  display:block;
  font-size:13px;
  line-height:1.7;
  color:var(--muted);
}

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

@keyframes premiumPulse {
  0%,100% { opacity:.45; transform: scale(1); }
  50% { opacity:.8; transform: scale(1.02); }
}

@keyframes premiumOrbit {
  0%,100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.02); }
}

.premium-main-frame{
  animation: premiumFloat 6s ease-in-out infinite;
}

.ghost-front{
  animation: premiumFloat 7s ease-in-out infinite;
}

.premium-spot,
.rail-pulse{
  animation: premiumPulse 4s ease-in-out infinite;
}

.orbit-a,
.orbit-b,
.orbit-c{
  animation: premiumOrbit 10s ease-in-out infinite;
}

@media (max-width:1000px){
  .impression-canvas{
    min-height: 900px !important;
  }

  .premium-before-stack{
    width:42%;
  }

  .premium-main-frame{
    width:55%;
  }

  .premium-impact-strip{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .impression-canvas{
    min-height:auto !important;
    padding:18px !important;
  }

  .impression-premium{
    min-height:auto;
    display:grid;
    gap:14px;
  }

  .premium-badge{
    position:static;
    width:max-content;
  }

  .premium-orbit,
  .premium-grid-line,
  .premium-note{
    display:none;
  }

  .premium-before-stack,
  .premium-main-frame{
    position:static;
    width:100%;
    min-width:0;
    transform:none !important;
  }

  .premium-before-stack{
    min-height:360px;
    margin-top:2px;
  }

  .ghost-back,
  .ghost-front{
    width:100%;
    left:0;
    right:0;
  }

  .ghost-back{
    top:6px;
  }

  .ghost-front{
    top:62px;
  }

  .premium-main-frame{
    min-height:auto;
  }

  .premium-frame-layout{
    grid-template-columns:1fr;
  }

  .premium-side-rail{
    grid-template-columns:repeat(5,1fr);
    align-items:center;
  }

  .rail-mark.big{
    height:48px;
  }

  .premium-card-grid{
    grid-template-columns:1fr;
  }

  .premium-impact-strip{
    position:static;
    grid-template-columns:1fr;
    padding-top:0;
  }

  .impact-item{
    border-radius:18px;
  }
}



/* ===== Impression scene v4 ===== */
.impression-visual{
  position:relative;
}

.impression-studio{
  position:relative;
  border-radius:32px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 80% 18%, rgba(17,24,39,.05), transparent 20%),
    radial-gradient(circle at 12% 88%, rgba(17,24,39,.035), transparent 18%),
    linear-gradient(180deg,#ffffff 0%, #f5f7fa 100%);
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:26px;
}

.impression-studio::before{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:24px;
  border:1px solid rgba(17,24,39,.05);
  pointer-events:none;
}

.studio-head{
  position:relative;
  z-index:2;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.studio-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 15px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 10px 22px rgba(15,23,42,.05);
  font-size:12px;
  font-weight:800;
  color:var(--text);
  white-space:nowrap;
}

.studio-caption{
  display:grid;
  gap:5px;
  text-align:left;
}

.studio-caption strong{
  font-size:15px;
  font-weight:800;
  color:var(--text);
}

.studio-caption span{
  font-size:13px;
  line-height:1.7;
  color:var(--muted);
  max-width:32ch;
}

.studio-workspace{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(220px, .78fr) 88px minmax(300px, 1.06fr);
  align-items:center;
  gap:18px;
}

.studio-panel{
  position:relative;
}

.studio-label{
  position:absolute;
  top:-12px;
  right:16px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
  font-size:12px;
  font-weight:800;
  color:var(--text);
}

.studio-after .studio-label{
  right:auto;
  left:16px;
}

.messy-stack{
  position:relative;
  min-height:330px;
}

.messy-card{
  position:absolute;
  inset:auto;
  width:100%;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(17,24,39,.08);
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 34px rgba(15,23,42,.08);
  backdrop-filter:blur(6px);
  transition:transform .8s ease, opacity .8s ease, filter .8s ease;
}

.layer-back{
  top:18px;
  transform:rotate(-8deg) translateX(8px);
  opacity:.38;
  filter:blur(.4px);
}

.layer-front{
  top:88px;
  transform:rotate(-2deg);
  opacity:.76;
}

.messy-top,
.clean-top{
  display:flex;
  gap:7px;
  padding:14px 16px;
  background:rgba(244,247,250,.92);
  border-bottom:1px solid rgba(17,24,39,.06);
}

.messy-top span,
.clean-top span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#c8d0da;
}

.messy-body{
  display:grid;
  gap:12px;
  padding:16px;
}

.m-line{
  display:block;
  height:11px;
  border-radius:999px;
  background:#d8dee6;
}

.m-line.l1{width:76%;}
.m-line.l2{width:48%;}
.m-line.l3{width:64%;}
.m-line.l4{width:54%;}

.m-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.m-grid b{
  display:block;
  height:78px;
  border-radius:16px;
  background:linear-gradient(180deg,#f8f9fb,#eef1f4);
  border:1px solid rgba(17,24,39,.06);
}

.m-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.m-pills b{
  display:block;
  width:70px;
  height:18px;
  border-radius:999px;
  background:#eceff3;
  border:1px solid rgba(17,24,39,.05);
}

.studio-rail{
  display:grid;
  justify-items:center;
  gap:12px;
}

.rail-word{
  font-size:11px;
  font-weight:800;
  color:var(--muted);
  text-align:center;
  line-height:1.5;
}

.rail-track{
  position:relative;
  width:14px;
  height:260px;
  border-radius:999px;
  background:linear-gradient(180deg,#eceff3,#e1e7ee);
  overflow:hidden;
  border:1px solid rgba(17,24,39,.05);
}

.rail-fill{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:18%;
  border-radius:999px;
  background:linear-gradient(180deg,#111827,#374151,#6b7280);
  box-shadow:0 12px 24px rgba(17,24,39,.16);
  transition:height .9s ease;
}

.rail-node{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.06);
  transition:transform .45s ease, background .45s ease, border-color .45s ease;
}

.node-1{ top:26px; }
.node-2{ top:118px; }
.node-3{ bottom:26px; }

.clean-frame{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(17,24,39,.08);
  background:linear-gradient(180deg,#ffffff,#f5f7fa);
  box-shadow:0 24px 42px rgba(15,23,42,.12);
  transition:transform .85s ease, box-shadow .85s ease, opacity .85s ease, filter .85s ease;
}

.clean-layout{
  display:grid;
  grid-template-columns:84px 1fr;
  gap:14px;
  padding:18px;
}

.clean-sidebar{
  display:grid;
  align-content:start;
  gap:10px;
  padding-top:8px;
}

.side-block{
  display:block;
  height:14px;
  border-radius:999px;
  background:#e5e9ef;
}

.side-block.big{
  height:88px;
  border-radius:18px;
}

.side-block.active{
  height:48px;
  border-radius:16px;
  background:linear-gradient(180deg,#111827,#374151);
  box-shadow:0 10px 22px rgba(17,24,39,.16);
}

.clean-core{
  display:grid;
  gap:14px;
}

.clean-hero{
  height:136px;
  border-radius:22px;
  background:
    linear-gradient(135deg, rgba(17,24,39,.16), rgba(17,24,39,.05)),
    linear-gradient(180deg,#f7f8fa,#eef1f4);
  border:1px solid rgba(17,24,39,.08);
}

.clean-lines{
  display:grid;
  gap:9px;
}

.c-line{
  display:block;
  height:11px;
  border-radius:999px;
  background:#d8dee6;
}

.c-line.c1{ width:78%; }
.c-line.c2{ width:56%; }

.clean-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.clean-grid b{
  display:block;
  height:82px;
  border-radius:18px;
  background:#fafbfc;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 8px 16px rgba(15,23,42,.04);
}

.clean-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.clean-pills em{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:76px;
  height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  font-style:normal;
  font-size:12px;
  font-weight:800;
  color:var(--text);
}

.after-notes{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.after-notes span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
  font-size:11px;
  font-weight:800;
  color:var(--text);
}

.studio-insights{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}

.insight-card{
  padding:18px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 12px 24px rgba(15,23,42,.06);
  transition:transform .55s ease, opacity .55s ease;
}

.insight-card strong{
  display:block;
  margin-bottom:6px;
  font-size:16px;
  font-weight:800;
  color:var(--text);
}

.insight-card span{
  display:block;
  font-size:13px;
  line-height:1.75;
  color:var(--muted);
}

/* states */
[data-impression-scene] .studio-before .layer-back,
[data-impression-scene] .studio-before .layer-front{
  opacity:.28;
}

[data-impression-scene] .clean-frame{
  opacity:.68;
  filter:saturate(.88);
  transform:translateY(10px) scale(.985);
}

[data-impression-scene] .studio-insights .insight-card{
  opacity:.78;
  transform:translateY(8px);
}

[data-impression-scene].is-seen .studio-before .layer-front{
  opacity:.82;
}

[data-impression-scene].phase-transform .rail-fill{
  height:58%;
}

[data-impression-scene].phase-transform .node-2{
  transform:translateX(-50%) scale(1.16);
  background:#fff;
  border-color:#374151;
}

[data-impression-scene].phase-finished .rail-fill{
  height:100%;
}

[data-impression-scene].phase-finished .node-3{
  transform:translateX(-50%) scale(1.18);
  background:#fff;
  border-color:#111827;
}

[data-impression-scene].phase-finished .clean-frame{
  opacity:1;
  filter:none;
  transform:translateY(0) scale(1);
  box-shadow:0 28px 50px rgba(15,23,42,.14);
}

[data-impression-scene].phase-finished .studio-before .layer-back{
  opacity:.16;
  transform:rotate(-11deg) translateX(14px) translateY(10px);
}

[data-impression-scene].phase-finished .studio-before .layer-front{
  opacity:.44;
  transform:rotate(-6deg) translateX(8px) translateY(6px);
}

[data-impression-scene].phase-finished .studio-insights .insight-card{
  opacity:1;
  transform:translateY(0);
}

[data-impression-scene].phase-finished .studio-insights .insight-card:nth-child(2){
  transition-delay:.08s;
}
[data-impression-scene].phase-finished .studio-insights .insight-card:nth-child(3){
  transition-delay:.16s;
}

@media (max-width:1000px){
  .studio-workspace{
    grid-template-columns:1fr;
    gap:16px;
  }

  .studio-rail{
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:10px;
  }

  .rail-track{
    width:100%;
    max-width:320px;
    height:14px;
  }

  .rail-fill{
    width:18%;
    height:100%;
    right:auto;
    left:0;
    transition:width .9s ease;
  }

  .rail-node{
    top:50%;
    transform:translateY(-50%);
  }

  .node-1{ right:24px; left:auto; }
  .node-2{ right:50%; left:auto; }
  .node-3{ left:24px; bottom:auto; }

  [data-impression-scene].phase-transform .rail-fill{
    width:58%;
  }

  [data-impression-scene].phase-transform .node-2{
    transform:translateY(-50%) scale(1.16);
  }

  [data-impression-scene].phase-finished .rail-fill{
    width:100%;
  }

  [data-impression-scene].phase-finished .node-3{
    transform:translateY(-50%) scale(1.18);
  }

  .studio-insights{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .impression-studio{
    padding:18px;
    border-radius:24px;
  }

  .studio-head{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:16px;
  }

  .studio-caption{
    text-align:right;
  }

  .messy-stack{
    min-height:300px;
  }

  .clean-layout{
    grid-template-columns:1fr;
  }

  .clean-sidebar{
    grid-template-columns:repeat(4,1fr);
    align-items:center;
  }

  .side-block.big{
    height:48px;
  }

  .clean-grid{
    grid-template-columns:1fr;
  }

  .studio-insights{
    margin-top:14px;
  }

  .insight-card{
    border-radius:18px;
  }
}



/* ===== Interactive arrangement demo ===== */
.impression-grid--interactive{
  align-items:center;
  gap:30px;
}

.impression-trigger{
  margin-top:6px;
}

.impression-notes{
  margin-top:18px;
  min-height:122px;
  position:relative;
}

.impression-note-group{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  position:absolute;
  inset:0;
  align-content:flex-start;
  transition:opacity .45s ease, transform .45s ease;
}

.impression-note-group span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 8px 18px rgba(15,23,42,.04);
  color:var(--text);
  font-size:12px;
  font-weight:800;
}

.note-before{
  opacity:1;
  transform:translateY(0);
}

.note-after{
  opacity:0;
  transform:translateY(12px);
}

.arrange-demo.is-arranged + .impression-notes .note-before{
  opacity:0;
  transform:translateY(-10px);
}

.arrange-demo.is-arranged + .impression-notes .note-after{
  opacity:1;
  transform:translateY(0);
}

.impression-grid--interactive.is-arranged .note-before{
  opacity:0;
  transform:translateY(-10px);
}

.impression-grid--interactive.is-arranged .note-after{
  opacity:1;
  transform:translateY(0);
}

.arrange-demo{
  position:relative;
  border-radius:34px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(17,24,39,.05), transparent 18%),
    radial-gradient(circle at 12% 84%, rgba(17,24,39,.04), transparent 16%),
    linear-gradient(180deg,#ffffff 0%, #f4f6f8 100%);
  box-shadow:var(--shadow);
  padding:24px;
  overflow:hidden;
}

.arrange-demo::before{
  content:"";
  position:absolute;
  inset:16px;
  border-radius:26px;
  border:1px solid rgba(17,24,39,.05);
  pointer-events:none;
}

.arrange-stage{
  position:relative;
  min-height:420px;
}

.arrange-overlay-message{
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 10px 22px rgba(15,23,42,.05);
  font-size:12px;
  font-weight:800;
  color:var(--text);
  z-index:5;
  transition:opacity .45s ease, transform .55s ease;
}

.arrange-overlay-message.after-state{
  opacity:0;
  transform:translateX(-50%) translateY(10px);
}

.arrange-window{
  position:absolute;
  inset:56px 0 0;
  border-radius:28px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 24px 44px rgba(15,23,42,.10);
}

.arrange-topbar{
  display:flex;
  gap:7px;
  padding:14px 16px;
  border-bottom:1px solid rgba(17,24,39,.06);
  background:rgba(244,247,250,.92);
}

.arrange-topbar span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#c8d0da;
}

.arrange-canvas{
  position:relative;
  min-height:320px;
  padding:24px;
}

.arrange-floating-chip{
  position:absolute;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
  font-size:11px;
  font-weight:800;
  color:var(--text);
  z-index:4;
  transition:opacity .45s ease, transform .8s ease;
}

.chip-a{ top:14px; right:20px; }
.chip-b{ top:124px; left:18px; }
.chip-c{ bottom:20px; right:58px; }

.arrange-card{
  position:absolute;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff,#f7f8fa);
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 18px 34px rgba(15,23,42,.08);
  transition:
    top .9s ease,
    right .9s ease,
    left .9s ease,
    bottom .9s ease,
    width .9s ease,
    height .9s ease,
    transform .9s ease,
    opacity .6s ease;
}

.card-hero{
  top:78px;
  right:34px;
  width:48%;
  min-height:146px;
  padding:18px;
  transform:rotate(0deg);
}

.card-head,
.card-sub,
.card-button,
.mini-line,
.mini-box{
  display:block;
  border-radius:999px;
  background:#d8dee6;
}

.card-head{
  height:14px;
  width:76%;
  margin-bottom:12px;
}

.card-sub{
  height:11px;
  width:54%;
  margin-bottom:16px;
}

.card-button{
  height:38px;
  width:110px;
  border-radius:14px;
  background:linear-gradient(180deg,#111827,#374151);
}

.card-info{
  padding:14px;
  background:rgba(255,255,255,.86);
}

.card-info-a{
  top:54px;
  left:34px;
  width:31%;
  min-height:112px;
  transform:rotate(1.5deg);
}

.card-info-b{
  bottom:42px;
  left:96px;
  width:29%;
  min-height:96px;
  transform:rotate(-1.5deg);
}

.mini-line{
  height:12px;
  width:68%;
  margin-bottom:12px;
}

.mini-line.short{
  width:52%;
}

.mini-box{
  height:54px;
  border-radius:16px;
  background:linear-gradient(180deg,#f8f9fb,#eef1f4);
  border:1px solid rgba(17,24,39,.06);
}

.arrange-benefits{
  position:absolute;
  left:24px;
  right:24px;
  bottom:20px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .45s ease, transform .45s ease;
}

.arrange-benefits em{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:78px;
  height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
  font-style:normal;
  font-size:12px;
  font-weight:800;
  color:var(--text);
}

.arrange-impact-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}

.impact-box{
  padding:18px 16px;
  border-radius:22px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 12px 24px rgba(15,23,42,.06);
}

.impact-box strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
  font-weight:800;
  color:var(--text);
}

.impact-box span{
  display:block;
  font-size:13px;
  line-height:1.75;
  color:var(--muted);
}

/* arranged state */
.arrange-demo.is-arranged .before-state{
  opacity:0;
  transform:translateX(-50%) translateY(-10px);
}

.arrange-demo.is-arranged .after-state{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.arrange-demo.is-arranged .arrange-floating-chip{
  opacity:0;
}

.arrange-demo.is-arranged .card-hero{
  top:26px;
  right:24px;
  width:calc(100% - 128px);
  min-height:126px;
  transform:none;
}

.arrange-demo.is-arranged .card-info-a{
  top:182px;
  left:24px;
  width:calc(50% - 34px);
  min-height:116px;
  transform:none;
}

.arrange-demo.is-arranged .card-info-b{
  top:182px;
  left:auto;
  right:24px;
  width:calc(50% - 34px);
  min-height:116px;
  bottom:auto;
  transform:none;
}

.arrange-demo.is-arranged .arrange-benefits{
  opacity:1;
  transform:translateY(0);
}

/* subtle continuous motion */
@keyframes arrangeFloatA{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}

@keyframes arrangePulse{
  0%,100%{ opacity:.92; }
  50%{ opacity:1; }
}

.arrange-demo .card-info-a{
  animation:arrangeFloatA 6s ease-in-out infinite;
}

.arrange-demo .card-info-b{
  animation:arrangeFloatA 7s ease-in-out infinite reverse;
}

.arrange-demo.is-arranged .impact-box:nth-child(2){
  animation:arrangePulse 4.8s ease-in-out infinite;
}

.arrange-demo.is-arranged .impact-box:nth-child(3){
  animation:arrangePulse 5.2s ease-in-out infinite;
}

@media (max-width:1000px){
  .arrange-impact-strip{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .impression-grid--interactive{
    gap:22px;
  }

  .impression-notes{
    min-height:160px;
  }

  .arrange-demo{
    padding:18px;
    border-radius:24px;
  }

  .arrange-stage{
    min-height:500px;
  }

  .arrange-window{
    inset:56px 0 0;
  }

  .arrange-canvas{
    min-height:400px;
    padding:18px;
  }

  .card-hero{
    right:18px;
    width:58%;
  }

  .card-info-a{
    left:18px;
    width:42%;
  }

  .card-info-b{
    left:72px;
    width:38%;
  }

  .arrange-pill-set{
    right:8px;
  }


  .arrange-demo.is-arranged .card-hero{
    width:calc(100% - 36px);
    right:18px;
  }

  .arrange-demo.is-arranged .card-info-a,
  .arrange-demo.is-arranged .card-info-b{
    width:calc(100% - 36px);
    left:18px;
    right:18px;
  }

  .arrange-demo.is-arranged .card-info-a{
    top:170px;
  }

  .arrange-demo.is-arranged .card-info-b{
    top:300px;
  }

  .arrange-benefits{
    bottom:18px;
    left:18px;
    right:18px;
  }
}



/* --- impression controls closer to demo --- */
.impression-visual-head{
  display:grid;
  gap:12px;
  margin-bottom:12px;
}

.impression-trigger{
  margin-top:0 !important;
  width:max-content;
}

.impression-notes{
  margin-top:0 !important;
  min-height:88px !important;
}

.impression-note-group{
  gap:8px;
}

.impression-note-group span{
  min-height:34px;
  padding:0 12px;
  font-size:11px;
}

.arrange-demo{
  margin-top:0;
}

/* remove old center guide visuals */
.arrange-guide,
.guide-line,
.guide-dot{
  display:none !important;
}

.arrange-benefits{
  display:none !important;
}

/* tighten arranged layout since guide/benefits are removed */
.arrange-stage{
  min-height:390px;
}

.arrange-canvas{
  min-height:290px;
  padding-bottom:18px;
}

@media (max-width:760px){
  .impression-visual-head{
    gap:10px;
    margin-bottom:10px;
  }

  .impression-trigger{
    width:100%;
  }

  .impression-notes{
    min-height:112px !important;
  }

  .impression-note-group{
    gap:6px;
  }

  .impression-note-group span{
    min-height:32px;
    font-size:10px;
    padding:0 10px;
  }

  .arrange-stage{
    min-height:450px;
  }

  .arrange-canvas{
    min-height:350px;
  }

  }



/* --- v8 polish: less exaggerated messy state --- */
.card-hero,
.card-info-a,
.card-info-b{
  transition:
    top .9s ease,
    right .9s ease,
    left .9s ease,
    bottom .9s ease,
    width .9s ease,
    height .9s ease,
    transform .9s ease,
    opacity .6s ease,
    box-shadow .6s ease;
}

.card-hero{
  box-shadow:0 16px 28px rgba(15,23,42,.07);
}

.card-info-a,
.card-info-b{
  box-shadow:0 14px 24px rgba(15,23,42,.06);
}

.arrange-demo.is-arranged .card-hero{
  box-shadow:0 22px 38px rgba(15,23,42,.10);
}

.arrange-demo.is-arranged .card-info-a,
.arrange-demo.is-arranged .card-info-b{
  box-shadow:0 16px 28px rgba(15,23,42,.08);
}



/* --- CTA pulse for arrange button --- */
.impression-trigger{
  position: relative;
  overflow: visible;
}

.impression-trigger::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:18px;
  border:1px solid rgba(17,24,39,.18);
  opacity:0;
  transform:scale(.96);
  pointer-events:none;
}

.impression-trigger.is-pulsing{
  animation:impressionButtonLift 1.15s ease;
}

.impression-trigger.is-pulsing::after{
  animation:impressionButtonHalo 1.15s ease;
}

@keyframes impressionButtonLift{
  0%{ transform:translateY(0) scale(1); box-shadow:0 12px 24px rgba(75,85,99,.18); }
  30%{ transform:translateY(-2px) scale(1.02); box-shadow:0 16px 30px rgba(75,85,99,.24); }
  100%{ transform:translateY(0) scale(1); box-shadow:0 12px 24px rgba(75,85,99,.18); }
}

@keyframes impressionButtonHalo{
  0%{ opacity:0; transform:scale(.96); }
  30%{ opacity:.28; transform:scale(1.03); }
  100%{ opacity:0; transform:scale(1.12); }
}
/* --- v10: clearer pulse on all devices --- */
.impression-trigger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:158px;
  will-change:transform, box-shadow;
}

.impression-trigger::before{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius:22px;
  background:rgba(17,24,39,.06);
  opacity:0;
  transform:scale(.92);
  pointer-events:none;
}

.impression-trigger::after{
  inset:-10px !important;
  border-radius:20px !important;
  border:1px solid rgba(17,24,39,.22) !important;
}

.impression-trigger.is-pulsing{
  animation:impressionButtonLiftV10 1.35s cubic-bezier(.2,.8,.2,1);
}

.impression-trigger.is-pulsing::before{
  animation:impressionButtonGlowV10 1.35s cubic-bezier(.2,.8,.2,1);
}

.impression-trigger.is-pulsing::after{
  animation:impressionButtonHaloV10 1.35s cubic-bezier(.2,.8,.2,1);
}

@keyframes impressionButtonLiftV10{
  0%{
    transform:translateY(0) scale(1);
    box-shadow:0 12px 24px rgba(75,85,99,.18);
  }
  22%{
    transform:translateY(-2px) scale(1.02);
    box-shadow:0 18px 34px rgba(75,85,99,.26);
  }
  55%{
    transform:translateY(0) scale(1.035);
    box-shadow:0 18px 34px rgba(75,85,99,.24);
  }
  100%{
    transform:translateY(0) scale(1);
    box-shadow:0 12px 24px rgba(75,85,99,.18);
  }
}

@keyframes impressionButtonGlowV10{
  0%{
    opacity:0;
    transform:scale(.92);
  }
  38%{
    opacity:.22;
    transform:scale(1.05);
  }
  100%{
    opacity:0;
    transform:scale(1.18);
  }
}

@keyframes impressionButtonHaloV10{
  0%{
    opacity:0;
    transform:scale(.96);
  }
  36%{
    opacity:.34;
    transform:scale(1.04);
  }
  100%{
    opacity:0;
    transform:scale(1.16);
  }
}

@media (min-width:761px){
  .impression-visual-head{
    align-items:flex-start;
  }
}

@media (max-width:760px){
  .impression-trigger{
    min-width:0;
  }
}


/* --- v12: cleaner interactive section --- */
.impression-visual-head{
  margin-bottom: 16px !important;
  padding-top: 8px;
}

.impression-trigger{
  margin-top: 6px !important;
}

.arrange-impact-strip,
.impact-box{
  display: none !important;
}

@media (max-width:760px){
  .impression-visual-head{
    margin-bottom: 14px !important;
    padding-top: 6px;
  }

  .impression-trigger{
    margin-top: 4px !important;
  }
}


/* --- v19: softer prelude refinement --- */
.hero-prelude{
  padding:14px 0 0;
}

.activity-prelude{
  min-height:120px;
  border-radius:28px;
  border:1px solid rgba(17,24,39,.05);
  background:
    radial-gradient(circle at 85% 16%, rgba(17,24,39,.025), transparent 18%),
    radial-gradient(circle at 15% 86%, rgba(17,24,39,.022), transparent 16%),
    linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
  box-shadow:0 14px 28px rgba(15,23,42,.05);
  padding:16px 18px 18px;
}

.activity-prelude::before{
  inset:10px;
  border-radius:20px;
  border:1px solid rgba(17,24,39,.035);
}

.activity-core{
  min-width:min(100%, 560px);
  gap:6px;
  padding:16px 26px;
  border-radius:999px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(17,24,39,.05);
  box-shadow:0 8px 20px rgba(15,23,42,.04);
}

.activity-core strong{
  font-size:17px;
  font-weight:800;
  line-height:1.15;
  letter-spacing:-.01em;
}

.activity-core span{
  font-size:13px;
  line-height:1.7;
  color:#6b7280;
}

.activity-ring{
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(17,24,39,.05);
  box-shadow:0 8px 18px rgba(15,23,42,.035);
  font-size:11px;
  font-weight:800;
  color:#202733;
  animation-duration:9s;
}

.ring-1{ top:16px; right:40px; }
.ring-2{ top:10px; right:156px; }
.ring-3{ top:16px; right:286px; }
.ring-4{ top:16px; left:286px; }
.ring-5{ top:10px; left:156px; }
.ring-6{ top:16px; left:40px; }
.ring-7{ bottom:12px; left:50%; transform:translateX(-50%); }

@keyframes activityDrift{
  0%,100%{ transform:translateY(0); opacity:.95; }
  50%{ transform:translateY(-3px); opacity:1; }
}

@keyframes activityDriftCenter{
  0%,100%{ transform:translateX(-50%) translateY(0); opacity:.95; }
  50%{ transform:translateX(-50%) translateY(-3px); opacity:1; }
}

@media (max-width:1000px){
  .activity-prelude{
    min-height:132px;
    padding:16px 14px 18px;
  }

  .activity-core{
    min-width:min(100%, 470px);
    padding:15px 22px;
  }

  .activity-core strong{
    font-size:16px;
  }

  .activity-core span{
    font-size:12px;
  }

  .ring-1{ right:18px; }
  .ring-2{ right:112px; }
  .ring-3{ right:220px; }
  .ring-4{ left:220px; }
  .ring-5{ left:112px; }
  .ring-6{ left:18px; }
}

@media (max-width:760px){
  .hero-prelude{
    padding:10px 0 0;
  }

  .activity-prelude{
    min-height:160px;
    border-radius:22px;
    padding:16px 10px;
  }

  .activity-core{
    min-width:100%;
    border-radius:24px;
    padding:16px 16px 14px;
  }

  .activity-core strong{
    font-size:16px;
  }

  .activity-core span{
    font-size:12px;
    max-width:22ch;
  }

  .activity-ring{
    min-height:30px;
    padding:0 11px;
    font-size:10px;
  }

  .ring-1{ top:10px; right:10px; }
  .ring-2{ top:10px; right:84px; }
  .ring-3{ top:10px; left:84px; right:auto; }
  .ring-4{ top:10px; left:10px; }
  .ring-5{ bottom:12px; right:12px; left:auto; top:auto; }
  .ring-6{ bottom:12px; left:12px; top:auto; }
  .ring-7{ bottom:12px; left:50%; }

  @keyframes activityDrift{
    0%,100%{ transform:translateY(0); opacity:.96; }
    50%{ transform:translateY(-1.5px); opacity:1; }
  }

  @keyframes activityDriftCenter{
    0%,100%{ transform:translateX(-50%) translateY(0); opacity:.96; }
    50%{ transform:translateX(-50%) translateY(-1.5px); opacity:1; }
  }
}
/* --- v16 alignment polish --- */
.activity-core{
  justify-items:center;
  text-align:center;
}

.hero-copy{
  text-align:center;
}

.hero-copy p{
  margin-inline:auto;
}

.hero-copy > div[style]{
  text-align:center;
}

.hero-actions,
.hero-copy .hero-actions,
.hero-copy > div:last-child{
  justify-content:center;
}

.hero-progress-box{
  text-align:right;
  max-width:860px;
  margin-inline:auto;
}

.hero-progress-label{
  text-align:right;
}

@media (max-width:760px){
  .hero-copy{
    text-align:center;
  }

  .hero-copy p{
    margin-inline:auto;
  }

  .hero-progress-box{
    text-align:right;
  }
}


/* ===== Linked circles prelude under header ===== */
.hero-prelude{
  padding:16px 0 8px;
}

.linked-circles-prelude{
  display:grid;
  justify-items:center;
  gap:0;
  position:relative;
}

.linked-circles-row{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0;
  width:max-content;
  max-width:100%;
  margin-inline:auto;
  padding-inline:10px;
  filter:drop-shadow(0 8px 18px rgba(15,23,42,.035));
}

.linked-circle{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  margin-inline-start:-7px;
  border-radius:50%;
  background:linear-gradient(180deg,#ffffff 0%, #f8fafc 100%);
  border:1px solid rgba(17,24,39,.05);
  color:#1f2937;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
  box-shadow:0 6px 14px rgba(15,23,42,.025);
  animation:linkedCircleFloat 9s ease-in-out infinite;
}

.linked-circle:first-child{
  margin-inline-start:0;
}

.linked-circle:nth-child(2){ animation-delay:.3s; }
.linked-circle:nth-child(3){ animation-delay:.6s; }
.linked-circle:nth-child(4){ animation-delay:.9s; }
.linked-circle:nth-child(5){ animation-delay:1.2s; }
.linked-circle:nth-child(6){ animation-delay:1.5s; }
.linked-circle:nth-child(7){ animation-delay:1.8s; }

.linked-caption-frame{
  position:relative;
  z-index:1;
  margin-top:-16px;
  min-width:min(100%, 360px);
  padding:18px 28px 16px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  border:1px solid rgba(17,24,39,.05);
  box-shadow:0 10px 22px rgba(15,23,42,.035);
  text-align:center;
}

.linked-caption-frame::before{
  content:"";
  position:absolute;
  top:-20px;
  left:50%;
  transform:translateX(-50%);
  width:190px;
  height:34px;
  border-top-left-radius:999px;
  border-top-right-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,0));
  border:1px solid rgba(17,24,39,.04);
  border-bottom:none;
  pointer-events:none;
}

.linked-caption-frame span{
  display:block;
  color:#ffffff;
  font-size:13px;
  font-weight:700;
  line-height:1.75;
  letter-spacing:-.01em;
}

@keyframes linkedCircleFloat{
  0%,100%{ transform:translateY(0); opacity:.98; }
  50%{ transform:translateY(-2px); opacity:1; }
}

@media (max-width:1000px){
  .linked-circle{
    width:66px;
    height:66px;
    font-size:11px;
    margin-inline-start:-8px;
  }

  .linked-caption-frame{
    min-width:min(100%, 350px);
    padding:16px 22px 14px;
  }

  .linked-caption-frame::before{
    width:210px;
  }
}

@media (max-width:760px){
  .hero-prelude{
    padding:10px 0 4px;
  }

  .linked-circles-prelude{
    width:100%;
  }

  .linked-circles-row{
    width:100%;
    justify-content:center;
    overflow-x:auto;
    overflow-y:visible;
    padding:2px 12px 0;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .linked-circles-row::-webkit-scrollbar{
    display:none;
  }

  .linked-circle{
    flex:0 0 auto;
    width:54px;
    height:54px;
    font-size:9px;
    margin-inline-start:-4px;
    animation-duration:11s;
  }

  .linked-caption-frame{
    width:min(100%, 292px);
    min-width:0;
    margin-top:-11px;
    padding:14px 14px 12px;
    border-radius:20px;
  }

  .linked-caption-frame::before{
    width:124px;
    top:-12px;
    height:20px;
  }

  .linked-caption-frame span{
    font-size:11px;
  }

  @keyframes linkedCircleFloat{
    0%,100%{ transform:translateY(0); opacity:.99; }
    50%{ transform:translateY(-1px); opacity:1; }
  }
}


/* --- v26 gray header + linked caption refinement --- */
@media (max-width:760px){
  .site-header{
    background:linear-gradient(180deg, rgba(96,104,116,.97), rgba(82,89,100,.97));
  }

  .linked-caption-frame{
    background:linear-gradient(180deg, #6b7280, #4b5563);
    border:1px solid rgba(255,255,255,.28);
    box-shadow:
      0 12px 24px rgba(15,23,42,.09),
      inset 0 1px 0 rgba(255,255,255,.10);
  }

  .linked-caption-frame span{
    color:#ffffff;
  }
}


/* ===== v29 models section refinement ===== */
.home-model-card{
  padding:14px;
}

.home-model-card h3{
  font-size:18px;
  margin:0 0 8px;
}

.home-model-card p{
  font-size:13px;
  line-height:1.85;
  margin:0 0 12px;
  min-height:48px;
}

.home-model-card .model-actions{
  grid-template-columns:1fr;
}

.home-model-card .btn{
  min-height:42px;
  font-size:13px;
}

.home-model-card .model-preview{
  margin-bottom:12px;
}

@media (max-width:760px){
  .home-model-card{
    padding:12px;
  }

  .home-model-card p{
    min-height:auto;
  }
}
/* ===== v30 trust meter for interactive section ===== */
.impression-visual-head{
  display:grid;
  gap:12px;
  margin-bottom:14px;
}

.impression-status-card{
  width:min(100%, 360px);
  padding:14px 14px 12px;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff,#f7f8fa);
  border:1px solid var(--line);
  box-shadow:0 10px 22px rgba(15,23,42,.05);
}

.impression-status-top,
.impression-status-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.impression-status-top span,
.impression-status-bottom span{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

.impression-status-top strong{
  color:var(--text);
  font-size:22px;
  font-weight:800;
  letter-spacing:-.02em;
}

.impression-status-track{
  position:relative;
  height:12px;
  border-radius:999px;
  background:#eceff3;
  border:1px solid rgba(17,24,39,.05);
  overflow:hidden;
  margin:12px 0 10px;
}

.impression-status-fill{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:34%;
  border-radius:999px;
  background:linear-gradient(90deg,#6b7280,#4b5563);
  box-shadow:0 8px 18px rgba(15,23,42,.12);
  transition:width .8s ease;
}

.impression-status-bottom em{
  font-style:normal;
  color:var(--text);
  font-size:12px;
  font-weight:800;
}

.impression-grid--interactive.is-arranged .impression-status-fill{
  width:84%;
}

@media (min-width:1001px){
  .impression-visual-head{
    grid-template-columns:auto auto 1fr;
    align-items:start;
  }

  .impression-status-card{
    width:220px;
  }

  .impression-notes{
    margin-top:0;
  }
}

@media (max-width:760px){
  .impression-status-card{
    width:100%;
    border-radius:18px;
    padding:12px 12px 10px;
  }

  .impression-status-top strong{
    font-size:20px;
  }
}


/* --- v31 tighten gap between notes and mockup --- */
.impression-visual-head{
  margin-bottom:8px !important;
}

.impression-notes{
  min-height:72px !important;
}

.arrange-stage{
  min-height:332px !important;
}

.arrange-window{
  inset:18px 0 0 !important;
}

.arrange-canvas{
  min-height:286px !important;
  padding-top:20px !important;
}

@media (max-width:760px){
  .impression-visual-head{
    margin-bottom:8px !important;
  }

  .impression-notes{
    min-height:88px !important;
  }

  .arrange-stage{
    min-height:388px !important;
  }

  .arrange-window{
    inset:14px 0 0 !important;
  }

  .arrange-canvas{
    min-height:322px !important;
    padding-top:16px !important;
  }
}
/* ===== v32 pricing toggle ===== */
.billing-switch{
  width:max-content;
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.billing-tab{
  min-width:92px;
  min-height:40px;
  padding:0 18px;
  border:none;
  border-radius:999px;
  background:transparent;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  transition:.22s ease;
}

.billing-tab.is-active{
  background:linear-gradient(180deg, #66707d, #4d5663);
  color:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.12);
}

.pricing-grid-two{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.price-subnote{
  margin:0 0 8px;
  color:var(--text);
  font-size:13px;
  font-weight:800;
}

.price-saving{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  margin:0 0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--text);
  font-size:12px;
  font-weight:800;
}

.pricing-card .btn{
  margin-top:8px;
}

@media (max-width:760px){
  .pricing-grid-two{
    grid-template-columns:1fr;
  }

  .billing-switch{
    width:100%;
    max-width:260px;
    justify-content:center;
  }

  .billing-tab{
    flex:1;
    min-width:0;
  }
}


/* ===== v48 Cairo site-wide final ===== */
html, body,
button,
input,
select,
textarea{
  font-family:"Cairo Local", Tahoma, Arial, sans-serif !important;
}

body{
  font-family:"Cairo Local", Tahoma, Arial, sans-serif !important;
}

.main-nav a,
.mobile-menu-inner a,
.btn,
.eyebrow,
.section-head h2,
.hero-copy h1,
.hero-copy p,
.pricing-card h3,
.pricing-card li,
.price-subnote,
.price-saving,
.foundation-copy h3,
.foundation-copy p,
.linked-caption-frame span,
.linked-circle,
.portfolio-sample-card h3,
.portfolio-sample-card p,
.testimonial-card p,
.testimonial-meta strong,
.testimonial-meta span,
.request-badge{
  font-family:"Cairo Local", Tahoma, Arial, sans-serif !important;
}

.hero-copy h1{
  font-size:clamp(31px,4vw,44px);
  line-height:1.28;
  font-weight:700;
  letter-spacing:-0.01em;
}

.hero-copy p{
  font-size:16px;
  line-height:2;
  font-weight:400;
}

.hero-actions .btn{
  font-size:14px;
  min-height:46px;
}

.section-head h2{
  line-height:1.35;
}

@media (max-width:760px){
  .hero-copy h1{
    font-size:clamp(26px,7vw,33px);
    line-height:1.34;
  }

  .hero-copy p{
    font-size:15px;
    line-height:1.95;
  }

  .hero-actions .btn{
    font-size:13px;
    min-height:44px;
  }
}
