:root{
  --bg:#0f0f12;
  --card:#15151a;
  --text:#fff;
  --muted:#9a9a9a;
  --primary:#0c6ef2;
  --danger:#ff3b3b;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:"Vazirmatn",sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* ================= HEADER ================= */
.header{
  padding:20px;
  display:flex;
  justify-content:space-between;
  position:fixed;
  width:100%;
  top:0;
  background:rgba(15,15,18,.7);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.menu-btn{font-size:26px;cursor:pointer}

/* ================= MOBILE MENU ================= */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:260px;
  height:100%;
  background:#111;
  padding:70px 20px;
  transition:.4s cubic-bezier(.4,0,.2,1);
  z-index:999;
}
.mobile-menu.open{right:0}

.mobile-menu a{
  display:block;
  color:#fff;
  padding:15px 0;
  text-decoration:none;
  font-size:15px;
}

/* ================= HERO SLIDER ================= */
.hero-slider{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.08);
  transition:opacity 1.5s ease, transform 2s ease;
}

.slide.active{
  opacity:1;
  transform:scale(1);
}

/* fake backgrounds */
.s1{background:linear-gradient(120deg,#0c6ef2,#0f0f12)}
.s2{background:linear-gradient(120deg,#1e1e2f,#0c6ef2)}
.s3{background:linear-gradient(120deg,#111,#1a1a3f)}

.hero-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  top:50%;
  transform:translateY(-50%);
  animation:heroIn 1.2s ease forwards;
}

@keyframes heroIn{
  from{opacity:0;transform:translateY(-40%)}
  to{opacity:1;transform:translateY(-50%)}
}

.btn-primary{
  background:linear-gradient(135deg,#0c6ef2,#3b82f6);
  color:#fff;
  padding:14px 30px;
  border-radius:14px;
  text-decoration:none;
  display:inline-block;
  transition:.3s;
}

.btn-primary:hover{
  transform:scale(1.05);
  box-shadow:0 15px 40px rgba(12,110,242,.45);
}

/* ================= REVEAL SCROLL ================= */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:all .9s cubic-bezier(.2,.8,.2,1);
}

.reveal.active{
  opacity:1;
  transform:none;
}

/* ================= PLANS ================= */
.plans{
  padding:120px 20px;
  text-align:center;
}

.plans-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  perspective:1200px;
}

.plan{
  background:var(--card);
  padding:30px;
  border-radius:22px;
  position:relative;
  transition:.4s;
  transform-style:preserve-3d;
}

.plan:hover{
  transform:rotateY(8deg) rotateX(8deg) translateY(-15px);
}

.plan.featured{
  border:2px solid var(--primary);
}

.badge{
  position:absolute;
  top:15px;
  right:15px;
  background:var(--danger);
  padding:6px 12px;
  border-radius:10px;
  font-size:13px;
}

.price


/* ===== TESTIMONIALS (CENTER FIX) ===== */
.testimonials{
  padding:100px 20px;
  background:radial-gradient(circle at top,#14141a,#0b0b0f);
  text-align:center;
}

.testimonials h2{
  margin-bottom:40px;
  font-size:26px;
}

.testimonial-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.testimonial{
  background:linear-gradient(180deg,#1a1a22,#111);
  padding:30px 25px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,.45);
  transition:.4s;
  position:relative;
}

.testimonial::before{
  content:"“";
  position:absolute;
  top:-20px;
  right:20px;
  font-size:80px;
  color:rgba(12,110,242,.15);
}

.testimonial:hover{
  transform:translateY(-12px) scale(1.02);
}

.testimonial p{
  font-size:14px;
  line-height:1.9;
  color:#ddd;
  margin-bottom:15px;
}

.testimonial strong{
  color:#0c6ef2;
  font-size:13px;
}

/* ===== CENTER TRUST & STATS FIX ===== */

.trust{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  padding:80px 20px;
  background:#000;
  max-width:1200px;
  margin:0 auto;
}

.stats{
  max-width:1100px;
  margin:80px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
  text-align:center;
}

.stat{
  background:#111;
  border-radius:22px;
  padding:30px 20px;
  box-shadow:0 15px 40px rgba(0,0,0,.4);
  transition:.4s;
}

.stat:hover{
  transform:translateY(-10px);
}

.stat strong{
  display:block;
  font-size:28px;
  color:#0c6ef2;
  margin-bottom:8px;
}

.stat span{
  font-size:14px;
  color:#aaa;
}

.trust-box{
  background:#111;
  border-radius:22px;
  padding:22px 15px;
  text-align:center;
  transition:0.4s ease;
}

.trust-box:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.45);
}

@media(max-width:768px){
  .trust{
    grid-template-columns:1fr;
  }
}


/* ===== CENTER TESTIMONIALS TITLE ===== */
.testimonials h2{
  text-align:center;
  margin-bottom:30px;
}

.testimonials h2{
  display:inline-block;
  padding:12px 30px;
  border-radius:30px;
  background:#0c6ef2;
  margin:0 auto 40px;
}

.testimonials{
  text-align:center;
}

/* ===== TESTIMONIAL STARS ===== */
.stars{
  color:#f5c518;
  font-size:18px;
  margin-bottom:12px;
  letter-spacing:2px;
  animation:starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow{
  from{
    text-shadow:0 0 5px rgba(245,197,24,0.4);
    transform:scale(1);
  }
  to{
    text-shadow:0 0 12px rgba(245,197,24,0.9);
    transform:scale(1.05);
  }
}

.testimonial{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 0.8s ease forwards;
}

.testimonial:nth-child(1){animation-delay:.2s}
.testimonial:nth-child(2){animation-delay:.4s}
.testimonial:nth-child(3){animation-delay:.6s}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: right;
  font-size: 16px;
  padding: 15px;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #ccc;
  padding: 0 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* اگر جواب‌ها طولانی‌ترن، عدد رو بیشتر کن */
}

.faq-box {
  max-width: 800px;
  margin: 40px auto;
  background: #0f0f14;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.faq-title {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 15px 0;
  text-align: right;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #cfcfcf;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}


.faq-box,
.faq-question,
.faq-answer,
.faq-answer p,
.faq-title {
  font-family: inherit;
  font-size: inherit;
}

.info-box {
  max-width: 900px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  background: #fdfdff;
  border: 1px solid #e6e6ee;
  border-radius: 20px;
  padding: 22px 26px;
  transition: box-shadow 0.3s ease;
}

.info-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-title {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  text-align: right;
  position: relative;
}

/* آیکن دایره‌ای سمت چپ */
.info-title::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  position: absolute;
  left: 0;
  top: 2px;
}

.info-title::before {
  content: "+";
  position: absolute;
  left: 7px;
  top: 0;
  font-size: 18px;
  color: #555;
  transition: transform 0.3s ease;
}

.info-item.active .info-title::before {
  content: "–";
}

/* محتوا */
.info-content {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.35s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}

.info-item.active .info-content {
  max-height: 500px;
  margin-top: 15px;
}

.info-content ul {
  padding-right: 18px;
}

.info-content li {
  margin-bottom: 10px;
}

body {
  font-family: Vazirmatn, sans-serif;
  background: #0b0b0d;
  color: #fff;
}

.support-section {
  padding: 80px 10%;
}

.reviews {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-title {
  display: inline-block;
  margin-bottom: 20px;
  color: #aaa;
}

.review img {
  width: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review h4 {
  margin: 10px 0;
}

.review p {
  max-width: 600px;
  margin: auto;
  color: #cfcfcf;
  line-height: 1.9;
}

.support-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.card-mockup img {
  width: 320px;
  transform: rotate(-15deg);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
}

.support-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.support-text p {
  color: #ccc;
  line-height: 2;
  max-width: 500px;
}

.support-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  border-radius: 12px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.support-btn:hover {
  background: #1c1c1c;
}

/* Responsive */
@media (max-width: 900px) {
  .support-content {
    flex-direction: column;
    text-align: center;
  }

  .card-mockup img {
    transform: none;
  }
}

body {
  background: radial-gradient(circle at top, #111, #050505);
  font-family: Vazirmatn, sans-serif;
  color: #fff;
}

.support-section {
  padding: 90px 10%;
}

/* Glass Reviews */
.reviews-glass {
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 80px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}

.reviews-title {
  display: block;
  text-align: center;
  margin-bottom: 30px;
  color: #bbb;
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
}

.slide {
  min-width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: .6s ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

.slide img {
  width: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.slide h4 {
  margin-bottom: 10px;
}

.slide p {
  max-width: 600px;
  margin: auto;
  line-height: 1.9;
  color: #ddd;
}

/* Nav */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 5px 15px;
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Support */
.support-content {
  display: flex;
  gap: 70px;
  align-items: center;
}

.card-mockup img {
  width: 320px;
  transform: rotate(-15deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-20px) rotate(-15deg); }
}

.support-text h2 {
  font-size: 38px;
}

.support-text p {
  max-width: 500px;
  color: #ccc;
  line-height: 2;
}

.support-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.support-btn:hover {
  background: rgba(255,255,255,.18);
}

/* Responsive */
@media(max-width:900px) {
  .support-content {
    flex-direction: column;
    text-align: center;
  }

  .card-mockup img {
    transform: none;
  }
}

.glass-card {
  width: 320px;
  height: 200px;
  border-radius: 28px;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.05)
  );
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 30px 80px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.2);
  overflow: hidden;
  transform: rotate(-15deg);
  animation: float 6s ease-in-out infinite;
}

/* Light reflection */
.card-light {
  position: absolute;
  top: -60%;
  left: -30%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.35),
    transparent 60%
  );
  transform: rotate(25deg);
}

/* Content */
.card-content {
  position: relative;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.apple-logo {
  font-size: 28px;
  opacity: .85;
}

.card-name {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: .85;
}

/* Chip */
.card-chip {
  width: 48px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    #d6d6d6,
    #9e9e9e
  );
  opacity: .8;
}

/* Floating animation */
@keyframes float {
  0%,100% {
    transform: translateY(0) rotate(-15deg);
  }
  50% {
    transform: translateY(-18px) rotate(-15deg);
  }
}

/* Responsive */
@media(max-width:900px) {
  .glass-card {
    transform: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 110px;           /* ← بزرگ‌تر از قبل */
  height: auto;
  filter: drop-shadow(0 0 14px rgba(255,255,255,.55));
}


.brand-name {
  font-family: 'Inter', 'SF Pro Display', sans-serif;
  font-size: 28px;      /* اسم برند بزرگ */
  font-weight: 300;
  letter-spacing: 3px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.6)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.customer-name {
  position: absolute;
  bottom: 24px;
  left: 28px;
  font-size: 12px;          /* کوچک */
  letter-spacing: 1.5px;
  opacity: 0.7;
  text-transform: uppercase;
}

@media (max-width: 768px) {

  /* کل سکشن */
  .support-section {
    padding: 60px 20px;
  }

  /* محتوا زیر هم */
  .support-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  /* کارت */
  .glass-card {
    width: 100%;
    max-width: 320px;
    height: 190px;
    transform: none;          /* چرخش حذف */
    animation: none;          /* انیمیشن حذف */
    margin: 0 auto;
  }

  /* لوگو و اسم برند */
  .brand {
    justify-content: center;
    gap: 8px;
  }

  .brand img {
    width: 52px;              /* کمی کوچیک‌تر برای موبایل */
  }

  .brand-name {
    font-size: 24px;
    letter-spacing: 2px;
  }

  /* اسم مشتری */
  .customer-name {
    font-size: 11px;
    bottom: 18px;
    left: 20px;
  }

  /* متن پشتیبانی */
  .support-text h2 {
    font-size: 28px;
  }

  .support-text p {
    font-size: 14px;
    line-height: 1.9;
  }

}

.reviews-glass {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  text-align: center;
  color: #fff;
}

.reviews-title {
  font-size: 22px;
  display: block;
  margin-bottom: 25px;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.slide h4 {
  margin: 8px 0;
  font-size: 16px;
}

.slide p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

/* Navigation */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.nav.prev { right: -10px; }
.nav.next { left: -10px; }

.nav:hover {
  background: rgba(255,255,255,0.3);
}

.security-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  direction: rtl;
}

.security-title {
  font-size: 26px;
  margin-bottom: 10px;
  color: #222;
}

.security-desc {
  color: #777;
  font-size: 14px;
  margin-bottom: 60px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.security-item {
  text-align: center;
  padding: 10px;
}

.security-item .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 20px;
  border-radius: 12px;
  border: 1px solid #dfe6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #3b6cff;
}

.security-item h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #222;
}

.security-item p {
  font-size: 13px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 15px;
}

.security-item a {
  font-size: 13px;
  color: #3b6cff;
  text-decoration: none;
}

.security-item a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slides */
.slides {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

/* مثال بک‌گراند */
.s1 { background: linear-gradient(120deg, #0c3c7a, #020b1a); }
.s2 { background: linear-gradient(120deg, #1a4fa3, #020b1a); }
.s3 { background: linear-gradient(120deg, #081b3a, #000); }

/* CONTENT */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* GLASS TITLE */
.glass-title {
  font-size: clamp(70px, 14vw, 170px);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 25px;
  position: relative;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.35)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: floatText 6s ease-in-out infinite;
}

/* Light sweep */
.glass-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.6),
    transparent 70%
  );
  transform: translateX(-120%);
  animation: lightSweep 4.5s ease-in-out infinite;
}

/* Sub text */
.hero-sub {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 25px;
}

/* Button */
.hero-btn {
  background: #1e88ff;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

/* Animations */
@keyframes floatText {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes lightSweep {
  0% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}


/* HERO */
.apple-hero {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* Background depth */
.apple-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, #1a4fa3 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, #0c2a5c 0%, transparent 40%),
    #000;
  filter: blur(40px);
  transform: scale(1.1);
}

/* CONTENT */
.apple-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* TITLE (Glass Apple Style) */
.apple-title {
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 700;
  letter-spacing: -0.06em;
  margin: 0;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.2)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  transform: translateY(40px);
  opacity: 0;
}

/* Subtitle */
.apple-subtitle {
  margin-top: 24px;
  font-size: 15px;
  opacity: 0.75;

  transform: translateY(30px);
  opacity: 0;
}

/* Button */
.apple-btn {
  margin-top: 32px;
  padding: 12px 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);

  transform: translateY(20px);
  opacity: 0;
}

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.apple-title {
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 700;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.05em;
}

.logo-o {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.08);
  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.25),
    0 0 40px rgba(255,255,255,0.15);
  animation: floatLogo 6s ease-in-out infinite;
}

.apple-logo {
  width: 55%;
  height: 55%;
  fill: white;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

/* Motion Apple Style */
@keyframes floatLogo {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-8px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

.apple-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -0.12em; /* 👈 باعث میشه O تو دل کلمه بشینه */
}

.logo-o {
  width: 0.95em;
  height: 0.95em;
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255,255,255,0.35),
      rgba(255,255,255,0.05)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 0 25px rgba(255,255,255,0.25),
    0 20px 60px rgba(0,0,0,0.35);

  animation: floatLogo 7s ease-in-out infinite;
}

.apple-logo {
  width: 58%;
  height: 58%;
  fill: rgba(255,255,255,0.95);
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.6));
}


@keyframes floatLogo {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-10px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

.apple-title {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -0.12em;
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.apple-logo {
  width: 56%;
  height: 56%;
  fill: #ffffff;

  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.8))
    drop-shadow(0 0 16px rgba(255,255,255,0.6));

  opacity: 1;
}

.logo-o {
  position: relative;
  width: 0.95em;
  height: 0.95em;
  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.25),
    0 25px 70px rgba(0,0,0,0.35);

  animation: floatLogo 7s ease-in-out infinite;
}

/* ===== APPLE LOGO INSIDE O ===== */

.apple-title {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -0.12em;
}

/* Glass O */
.logo-o {
  position: relative;
  width: 0.95em;
  height: 0.95em;
  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 0 22px rgba(255,255,255,0.28),
    0 25px 70px rgba(0,0,0,0.4);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  animation: floatLogo 7s ease-in-out infinite;
}

/* Inner glass light (VERY IMPORTANT) */
.logo-o::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255,255,255,0.4),
    transparent 60%
  );
  pointer-events: none;
}

/* Apple logo */
.apple-logo {
  width: 56%;
  height: 56%;
  fill: #fff;

  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.85))
    drop-shadow(0 0 18px rgba(255,255,255,0.65));

  opacity: 1;
}

/* Motion */
@keyframes floatLogo {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-10px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

.apple-logo path:first-child {
  opacity: 0.9;
}

.apple-logo path:first-child {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
}

body {
  font-family: "Vazirmatn", -apple-system, BlinkMacSystemFont, sans-serif;
}

body, * {
  font-family: "Vazirmatn", sans-serif !important;
}


.apple-subtitle {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.7);

  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.apple-btn {
  margin-top: 34px;
  padding: 12px 34px;

  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition: 
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;

  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

.apple-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apple-desc {
  margin-top: 14px;
  max-width: 520px;

  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.2px;

  color: rgba(255,255,255,0.55);
  text-align: center;

  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.45s;
}


.apple-desc {
  margin-top: 40px;          /* فاصله از دکمه */
  font-size: 18px;           /* درشت‌تر */
  line-height: 2;            /* خوانایی بالا */
  max-width: 900px;          /* کش نیاد */
  color: rgba(255,255,255,0.85);
  text-align: center;
}

/* دسکتاپ بزرگ */
@media (min-width: 1200px) {
  .apple-desc {
    font-size: 20px;
    margin-top: 50px;
  }
}

.apple-content {
  transform: translateY(40px);
}


.logo-o {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.25),
    0 20px 60px rgba(0,0,0,0.35);

  margin: 0 14px;
}

.apple-logo {
  width: 68px;
  height: auto;
  fill: #ffffff;

  display: block;

  /* اصلاح جای برگ */
  transform: translateX(-3px) translateY(2px);
}

/* ===== FOOTER GLASS BOX ===== */
.footer-box {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.footer-content {
  width: 100%;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;

  padding: 25px 30px;
  text-align: center;

  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.1);
}

/* بالا */
.footer-support {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 14px;
}

.footer-support a {
  color: #6aa9ff;
  text-decoration: none;
  font-weight: 500;
}

.footer-support a:hover {
  text-decoration: underline;
}

.footer-support .phone {
  color: #aaa;
}

/* پایین */
.footer-copy {
  font-size: 12px;
  color: #aaa;
  line-height: 1.8;
}

/* موبایل */
@media (max-width: 600px) {
  .footer-support {
    flex-direction: column;
    gap: 10px;
  }
}


.apple-tagline {
  margin-top: 14px;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85);
  text-align: center;

  /* Apple-style soft glow */
  text-shadow:
    0 0 6px rgba(255,255,255,0.25);

  /* fade + slide animation */
  opacity: 0;
  transform: translateY(10px);
  animation: taglineIn 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes taglineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .apple-tagline {
    font-size: 18px;
  }
}

#plans {
  scroll-margin-top: 120px;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  #plans {
    scroll-margin-top: 90px;
  }
}

@media (max-width: 768px) {

  .plans {
    padding: 80px 16px;
  }

  .plans h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .plans-grid {
    grid-template-columns: 1fr;   /* فقط یک ستون */
    gap: 22px;
  }

  .plan {
    padding: 24px 20px;
    border-radius: 18px;
    transform: none !important;   /* افکت سه‌بعدی غیرفعال */
  }

  .plan:hover {
    transform: none;
  }
}

@media (max-width: 768px) {

  .plan h3 {
    font-size: 18px;
  }

  .plan p,
  .plan li {
    font-size: 14px;
    line-height: 1.9;
  }

  .price {
    font-size: 26px;
  }
}

@media (max-width: 768px) {

  .plan a,
  .plan button {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .plan {
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
  }
}

/* دکمه سبد خرید */
.cart-btn {
  padding: 12px 30px;
  background: #0c6ef2;
  color: white;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.cart-btn:hover {
  background: #1e88ff;
}

/* پاپ آپ سبد خرید */
.cart-popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #fff;
  padding: 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.cart-popup.active {
  transform: translateX(0);
}

.cart-popup h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.cart-items {
  max-height: 70%;
  overflow-y: auto;
}

.cart-summary {
  margin-top: 20px;
  text-align: center;
}

.checkout-btn {
  padding: 10px 20px;
  background-color: #0c6ef2;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.checkout-btn:hover {
  background-color: #1e88ff;
}

.close-btn {
  padding: 10px;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.close-btn:hover {
  background-color: #e53935;
}

/* موبایل فرندلی */
@media (max-width: 768px) {
  .cart-popup {
    width: 100%;
  }
}

/* ===== iBoutique Article ===== */
.ib-article {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 16px;
  color: #fff;
  line-height: 2;
}

.ib-title {
  font-size: 26px;
  margin-bottom: 20px;
}

.ib-intro {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 25px;
}

.ib-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}

.ib-list,
.ib-steps {
  margin: 20px 0 30px;
  padding-right: 20px;
}

.ib-list li,
.ib-steps li {
  margin-bottom: 10px;
}

.ib-note {
  background: rgba(255,193,7,0.12);
  border-right: 4px solid #ffc107;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.ib-summary {
  background: linear-gradient(135deg, #0c6ef2, #3b82f6);
  padding: 24px;
  border-radius: 20px;
  margin: 40px 0;
}

.ib-faq {
  background: rgba(255,255,255,0.06);
  padding: 20px;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .ib-title {
    font-size: 22px;
  }
}

/* ===== iBoutique Article ===== */
.ib-article {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 16px;
  color: #fff;
  line-height: 2;
}

.ib-title {
  font-size: 26px;
  margin-bottom: 20px;
}

.ib-intro {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 25px;
}

.ib-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}

.ib-list,
.ib-steps {
  margin: 20px 0 30px;
  padding-right: 20px;
}

.ib-list li,
.ib-steps li {
  margin-bottom: 10px;
}

.ib-note {
  background: rgba(255,193,7,0.12);
  border-right: 4px solid #ffc107;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.ib-summary {
  background: linear-gradient(135deg, #0c6ef2, #3b82f6);
  padding: 24px;
  border-radius: 20px;
  margin: 40px 0;
}

.ib-faq {
  background: rgba(255,255,255,0.06);
  padding: 20px;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .ib-title {
    font-size: 22px;
  }
}

/* ===== Apple-like Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Trust title */
.trust-title {
  text-align: center;
  margin-bottom: 14px;
  color: #fff;
}

/* Rectangular logo box */

/* Images */
.trust-rect img,
.trust-rect iframe {
  max-width: 90px;
  max-height: 45px;
  width: auto;
  height: auto;
}

/* Zarinpal iframe fix */
.zarinpal-fix iframe {
  display: block;
  margin: auto;
}


/* TRUST SECTION */

.trust-title {
  margin-bottom: 14px;
  color: #fff;
}


/* تصاویر */
.trust-item img {
  max-width: 90px;
  max-height: 50px;
  width: auto;
  height: auto;
}

.trust-title {
  margin-bottom: 14px;
  color: #fff;
}



/* تصاویر */
.trust-item img {
  max-width: 90px;
  max-height: 50px;
  width: auto;
  height: auto;
}


.zarinpal-fix iframe,
.zarinpal-fix img {
  max-width: 90px !important;
  max-height: 50px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  margin: auto !important;
}


/* ===== TRUST FINAL FIX ===== */

.trust-title {
  margin-bottom: 14px;
  color: #fff;
}

/* باکس مستطیلی مثل باکس بالایی */
.trust-box-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;

  padding: 18px 24px;
  border-radius: 18px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);

  max-width: 320px;
  margin: 0 auto;
}

/* هر لوگو */
.trust-card {
  width: 120px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 14px;

  overflow: hidden;
}

/* تصویر داخل */
.trust-card img,
.trust-card iframe {
  max-width: 90px;
  max-height: 50px;
  width: auto;
  height: auto;
}

/* فیکس زرین‌پال */
.zarinpal-card iframe {
  display: block;
  margin: 0 auto;
}

/* موبایل هم افقی بمونه */
@media (max-width: 768px) {
  .trust-box-horizontal {
    flex-direction: row;
  }
}

/* ===== TRUST FINAL – CLEAN ===== */

.trust-final {
  text-align: center;
  margin: 60px auto;
}

.trust-final h4 {
  margin-bottom: 14px;
  color: #fff;
}

/* Glass container */
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;

  padding: 18px 24px;
  border-radius: 18px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);

  max-width: 320px;
  margin: 0 auto;
}

/* Logo box */
.trust-logo {
  width: 120px;
  height: 70px;

  background: #fff;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* Images / iframe */
.trust-logo img,
.trust-logo iframe {
  max-width: 90px;
  max-height: 50px;
  width: auto;
  height: auto;
}

/* Zarinpal hard fix */
.trust-logo iframe {
  display: block;
  margin: auto;
}

/* Mobile stays horizontal */
@media (max-width: 768px) {
  .trust-row {
    flex-direction: row;
  }
}

/* ===== TRUST FINAL – SINGLE RECTANGLE ===== */

.trust-final {
  text-align: center;
  margin: 60px auto;
}

.trust-final h4 {
  margin-bottom: 14px;
  color: #fff;
}

/* مستطیل شیشه‌ای */
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;

  padding: 18px 24px;
  border-radius: 18px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);

  max-width: 320px;
  margin: 0 auto;
}

/* هر لوگو */
.trust-logo {
  width: 120px;
  height: 70px;

  background: #fff;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* تصویر و iframe */
.trust-logo img,
.trust-logo iframe {
  max-width: 90px;
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
}

/* موبایل هم افقی بماند */
@media (max-width: 768px) {
  .trust-row {
    flex-direction: row;
  }
}

.features {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin: 80px auto;
  padding: 0 20px;
  flex-wrap: wrap; /* موبایل */
}

.feature-card {
  width: 300px;
  padding: 28px 24px;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: all 0.4s ease;
}

/* hover خیلی ظریف اپلی */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

/* آیکن */
.feature-card .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

/* عنوان */
.feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* متن زیر */
.feature-card p {
  font-size: 13px;
  opacity: 0.75;
}

.features {
  gap:86px;
}

@media (max-width: 768px) {
  .features {
    gap: 24px;
  }
}

.vision-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 80px 24px;
  flex-wrap: wrap;
}

.vision-card {
  position: relative;
  width: 320px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.04)
  );
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 40px 120px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.35);
  color: #fff;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.16,1,.3,1),
              box-shadow .6s ease;
  opacity: 0;
  transform: translateY(40px);
}

.vision-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.vision-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(
    circle at var(--x,50%) var(--y,50%),
    rgba(255,255,255,.25),
    transparent 40%
  );
  opacity: .6;
  pointer-events: none;
  transition: opacity .3s;
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 60px 160px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.icon {
  font-size: 26px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.35));
}

.text h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: .3px;
}

.text p {
  font-size: 13px;
  opacity: .75;
  margin: 0;
}

@media (max-width: 768px) {
  .vision-features {
    gap: 24px;
  }
  .vision-card {
    width: 100%;
    max-width: 380px;
  }
}

.footer-quick-access {
  margin-top: 120px; /* فاصله از بالا */
}

.site-footer {
  margin-top: 120px; /* فاصله از بالا */
}

.site-footer {
  padding-top: 120px;
}

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

.footer-quick-access h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.footer-quick-access ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-quick-access li {
  margin: 10px 0;
}

.footer-quick-access a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.35s ease;
}


.site-footer {
  backdrop-filter: blur(20px);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border-radius: 18px;
  padding: 30px 40px;
}

/* ✨ Apple hover */
.site-footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

.footer-col.brand {
  text-align: center;
  margin: 0 auto;
}

.footer-col.brand {
  text-align: center;
  align-items: center;
}

.footer-col.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col.brand h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.footer-col.brand h4 {
  margin-bottom: 4px;
  line-height: 1.15;
}

.footer-col.brand p {
  line-height: 1.35;
}

.brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.brand-logo img {
  width: 380px;              /* قابل تغییر */
  max-width: 80%;
  filter: drop-shadow(0 10px 30px rgba(255,255,255,0.15));
  transition: transform .6s ease, filter .6s ease;
}

/* hover خیلی subtle */
.brand-logo img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 15px 40px rgba(255,255,255,0.25));
}

.brand-logo {
  position: relative;
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle at var(--x,50%) var(--y,50%),
    rgba(255,255,255,0.12),
    transparent 60%
  );
  opacity: .6;
  pointer-events: none;
}

@media (max-width: 768px) {
  .brand-logo img {
    width: 170px;
  }
}



