.trust{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:15px;
  color:#475569;
}

.trust div{
  background:#f8fafc;
  padding:6px 10px;
  border-radius:8px;
  border:1px solid #e2e8f0;
  transition:0.3s;
}

.trust div:hover{
  transform:translateY(-3px);
}

.tool-select{
  margin-top:10px;
  padding:8px;
  border-radius:8px;
  border:1px solid #d8e2f0;
}

:root{
  --bg:#f7f9ff;
  --panel:#ffffff;
  --line:#d8e2f0;
  --text:#0f172a;
  --muted:#64748b;
  --primary:#2563eb;
  --primary2:#0ea5e9;
  --shadow:0 18px 50px rgba(15,23,42,.08);
  --radius:20px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  min-height:100%;
  font-family:system-ui,-apple-system,Segoe UI,sans-serif;
  background:var(--bg);
  color:var(--text);
}

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

button,input{
  font:inherit;
}

body{
  margin:0;
  overflow-x:hidden;
  padding-top:0;
    }

.wrap{
  max-width:1200px;
  margin:auto;
  padding:8px 20px 20px;
}
.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:60px;
  z-index:99999;
  background:#eef4ff;
  border-bottom:1px solid #dfe8ff;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.topbar-inner{
  max-width:1200px;
  margin:auto;
  height:60px;
  padding:0 16px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
}

.top-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.top-link{
  padding:10px 14px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  font-size:.92rem;
  transition:.18s ease;
}

.top-link:hover{
  transform:translateY(-1px);
  border-color:#c9d8ff;
  box-shadow:0 8px 18px rgba(37,99,235,.08);
}

.top-link.primary{
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  color:#fff;
  border-color:transparent;
}

.hero{
  margin-top:0;
  margin-bottom:14px;
  padding:22px;
  background:linear-gradient(180deg,#f4f7ff,#eef4ff);
  border:1px solid #dfe8ff;
  border-radius:28px;
  box-shadow:none;
}
.modern-hero{
  padding-top:24px;
  border-radius:0 0 28px 28px;
}

.hero-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.hero-copy-block{
  min-width:min(100%,560px);
  flex:1;
}

.hero h1{
  margin:0 0 10px;
  font-size:clamp(1.35rem,3vw,2.35rem);
  line-height:1.06;
  letter-spacing:-.03em;
}

.hero p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  max-width:64ch;
}

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

.hero-btn{
  border:1px solid var(--line);
  background:#fff;
  padding:11px 14px;
  border-radius:12px;
  font-weight:700;
  transition:.18s ease;
}

.hero-btn.primary{
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  color:#fff;
  border-color:transparent;
}

.hero-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.search-wrap{
  margin:18px 0 20px;
}

.search-box{
  position:relative;
  width:100%;
}

.search-icon{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
  opacity:.55;
  pointer-events:none;
}

.modern-search{
  width:100%;
  height:58px;
  padding:0 18px 0 52px;
  border-radius:18px;
  border:1px solid #d8e2f0;
  background:#fff;
  font-size:15px;
  font-weight:600;
  outline:none;
  box-shadow:0 10px 25px rgba(37,99,235,.06);
  transition:.2s ease;
}

.modern-search:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.modern-search::placeholder{
  color:#64748b;
}


.section-block{
  margin-top:22px;
}

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:0 0 12px;
}

.section-head h2{
  margin:0;
  font-size:18px;
}

.section-head .count{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  min-height:300px;
  align-items:start;
}

.tool-card{
  padding:16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,#f8fbff);
  display:flex;
  gap:12px;
  color:inherit;
  transition:.2s ease;
  min-height:112px;
  position:relative;
  overflow:hidden;
}

.tool-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width:90px;
  height:90px;
  border-radius:50%;
  background:rgba(37,99,235,.06);
  pointer-events:none;
}

.tool-card:hover{
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.tool-ico{
  width:46px;
  height:46px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#eef4ff;
  font-weight:700;
  color:var(--primary);
  flex:0 0 46px;
  font-size:18px;
}

.tool-card h3{
  margin:0;
  font-size:16px;
}

.tool-card p{
  margin:4px 0 0;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}

.empty-state{
  padding:18px;
  background:#fff;
  border:1px dashed var(--line);
  border-radius:16px;
  color:var(--muted);
}

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

.logo-box{
  position:relative;
  width:42px;
  height:42px;
  min-width:42px;
  min-height:42px;
  border-radius:50%;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:.3s ease;
  box-shadow:none;
  flex-shrink:0;
}

.brand-logo{
  width:28px;
  height:28px;
  object-fit:contain;
  position:relative;
  z-index:2;
  display:block;
  border-radius:50%;
}

.logo-glow{
  position:absolute;
  width:120%;
  height:120%;
  background:linear-gradient(45deg,#2563eb,#0ea5e9,#6366f1);
  filter:blur(14px);
  opacity:.6;
  z-index:1;
  animation:rotateGlow 6s linear infinite;
}

@keyframes rotateGlow{
  0%{
    transform:rotate(0deg);
  }
  100%{
    transform:rotate(360deg);
  }
}

.brand:hover .logo-box{
  transform:none;
  box-shadow:0 10px 30px rgba(37,99,235,.4);
}
.logo-text{
  font-size:18px;
  font-weight:800;
  letter-spacing:-0.3px;
  color:#0f172a;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.logo-text span{
  color:#2563eb;
}

.brand:hover .logo-text{
  letter-spacing:0.5px;
}

.menu-wrapper{
  position:relative;
  margin-left:10px;
}

.menu-btn{
  font-size:22px;
  cursor:pointer;
  padding:6px 12px;
  border:1px solid #d8e2f0;
  border-radius:10px;
  background:#fff;
  transition:0.2s;
}

.menu-btn:hover{
  transform:scale(1.1);
  background:#f1f5ff;
}

.mega-menu{
  display:none;
  position:absolute;
  top:45px;
  right:0;
  width:320px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
  padding:12px;
  z-index:9999;
  animation:fadeIn .2s ease;
}

.mega-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}

.mega-grid a{
  padding:10px;
  font-size:13px;
  border-radius:10px;
  border:1px solid #eef2ff;
  background:#f8fafc;
  transition:0.2s;
  text-align:left;
}

.mega-grid a:hover{
  background:#2563eb;
  color:#fff;
  transform:translateY(-2px);
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width:760px){

  

.topbar-inner{
  height:56px;
  padding:0 12px;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
}

  .top-actions{
    display:none;
  }

  .brand{
    gap:6px;
  }

.logo-text{
  font-size:15px;
  line-height:1;
  white-space:nowrap;
  display:flex;
  align-items:center;
}

.logo-box{
  width:32px;
  height:32px;
  min-width:32px;
  min-height:32px;
  flex-shrink:0;
}

  .menu-wrapper{
    margin-left:6px;
  }

  .mega-menu{
    width:90vw;
    right:-10px;
  }

  .wrap{
    padding:68px 10px 10px;
  }

  .hero{
    margin:0 0 10px;
    padding:14px;
  }

  select{
    margin-top:8px;
  }

  .upload-note{
    margin-top:8px;
  }

  .hero-cta{
    width:100%;
    margin-top:8px;
  }

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

}

@media (max-width:600px){

  .logo-text{
    font-size:14px;
    line-height:1;
  }

  .logo-box{
    width:30px;
    height:30px;
    min-width:30px;
    min-height:30px;
  }

  .brand-logo{
    width:20px;
    height:20px;
  }

}

.modern-hero{
  position:relative;
  overflow:hidden;
  background:
  radial-gradient(circle at top right, rgba(37,99,235,.10), transparent 30%),
  linear-gradient(180deg,#eef4ff,#f7f9ff);
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:#eef4ff;
  color:#2563eb;
  font-size:13px;
  font-weight:700;
  margin-bottom:16px;
  border:1px solid #d9e6ff;
}

.hero h1 span{
  display:block;
  margin-top:6px;
  background:linear-gradient(90deg,#2563eb,#0ea5e9);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.modern-trust{
  margin-top:20px;
}

.modern-trust div{
  background:#fff;
  border:1px solid #e5edff;
  box-shadow:0 4px 12px rgba(37,99,235,.05);
}

.hero-preview{
  flex:1;
  min-width:280px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.preview-card{
  width:100%;
  max-width:360px;
  background:#fff;
  border-radius:24px;
  padding:18px;
  border:1px solid #e2e8f0;
  box-shadow:
  0 20px 50px rgba(37,99,235,.12),
  inset 0 1px 0 rgba(255,255,255,.8);
  position:relative;
}

.preview-top{
  height:18px;
  border-radius:999px;
  width:120px;
  background:linear-gradient(90deg,#2563eb,#0ea5e9);
  margin-bottom:20px;
}

.preview-body{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.preview-line{
  height:12px;
  border-radius:999px;
  background:#dbeafe;
}

.preview-line.w1{
  width:100%;
}

.preview-line.w2{
  width:82%;
}

.preview-line.w3{
  width:60%;
}

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

.preview-grid div{
  height:70px;
  border-radius:14px;
  background:linear-gradient(135deg,#eff6ff,#dbeafe);
  border:1px solid #dbeafe;
}

.floating{
  animation:floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-10px);
  }
  100%{
    transform:translateY(0px);
  }
}

.glow-btn{
  position:relative;
  overflow:hidden;
}

.glow-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.4),
    transparent
  );
  transform:translateX(-100%);
  animation:shine 3s infinite;
}

@keyframes shine{
  100%{
    transform:translateX(200%);
  }
}

.glass-btn{
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(10px);
}

@media (max-width:760px){

  .hero-top{
    flex-direction:column;
  }

  .hero-preview{
    width:100%;
    margin-top:16px;
  }

  .preview-card{
    max-width:100%;
  }

  .hero-badge{
    font-size:12px;
  }

  .hero h1{
    line-height:1.15;
  }

}

.tool-card{
  isolation:isolate;
}

.tool-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  padding:1px;
  background:linear-gradient(
    135deg,
    rgba(37,99,235,.25),
    rgba(14,165,233,.05),
    rgba(99,102,241,.25)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:0;
  transition:.35s;
}

.tool-card:hover::before{
  opacity:1;
}

.hero-btn{
  position:relative;
  overflow:hidden;
}

.hero-btn:active{
  transform:scale(.96);
}

.topbar{
  height:60px;
}

html{
  scroll-behavior:smooth;
      }
.socials{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:14px;
}

.socials a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#f1f5ff;
  border:1px solid #dbeafe;
  transition:.25s;
  font-size:18px;
}

.socials a:hover{
  transform:translateY(-4px);
  background:#2563eb;
  color:#fff;
    }
#grid{
  transition:opacity .25s ease;
}
#grid{
  min-height:500px;
  contain:layout;
}
@media (max-width:760px){

  .hero-preview{
    display:none;
  }

  }
.tool-layout{
  max-width:1200px;
  margin:auto;
  padding:50px 20px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
}

.tool-panel{
  background:#fff;
  border-radius:30px;
  padding:30px;
  border:1px solid #e5e7eb;
  box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.tool-head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
}

.tool-icon{
  width:68px;
  height:68px;
  border-radius:22px;
  background:linear-gradient(135deg,#2563eb,#9333ea);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
}

.tool-head h1{
  font-size:42px;
  line-height:1;
}

.tool-head h1 span{
  color:#2563eb;
}

.tool-head p{
  margin-top:10px;
  color:#6b7280;
}

.right-area{
  padding:10px 0;
}

.features{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.feature{
  display:flex;
  gap:14px;
  text-align:left;
}

.feature-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  background:#fff;
  border:1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#2563eb;
  box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.feature h4{
  font-size:18px;
}

.feature p{
  color:#6b7280;
  margin-top:4px;
}

@media(max-width:980px){
  .tool-layout{
    grid-template-columns:1fr;
  }

  .right-area{
    order:-1;
  }
}

@media(max-width:760px){
  .tool-head h1{
    font-size:32px;
  }

  .tool-panel{
    padding:20px;
    border-radius:24px;
  }

  .tool-layout{
    padding:20px 14px;
  }
  }
.upload-box{
  margin-top:20px;
}

.upload-area{
  position:relative;
  width:100%;
  min-height:220px;
  border:2px dashed #c7d7ff;
  border-radius:24px;
  background:linear-gradient(180deg,#f8fbff,#eef4ff);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:30px;
  font-size:20px;
  font-weight:700;
  color:#2563eb;
  cursor:pointer;
  transition:.3s;
  overflow:hidden;
}

.upload-area:hover{
  border-color:#2563eb;
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(37,99,235,.12);
}

.upload-area input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}

#password{
  width:100%;
  height:56px;
  border-radius:16px;
  border:1px solid #dbe4f5;
  padding:0 18px;
  font-size:16px;
  outline:none;
  margin-top:18px;
}

#password:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.08);
}

.strength{
  width:100%;
  height:10px;
  border-radius:999px;
  background:#e5e7eb;
  overflow:hidden;
  margin-top:16px;
}

.strength span{
  display:block;
  height:100%;
  width:0;
  border-radius:999px;
  transition:.3s;
}

.loader{
  display:none;
  margin-top:22px;
  text-align:center;
}

.loader div{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#2563eb;
  display:inline-block;
  margin:0 4px;
  animation:bounce .6s infinite alternate;
}

.loader div:nth-child(2){
  animation-delay:.2s;
}

.loader div:nth-child(3){
  animation-delay:.4s;
}

@keyframes bounce{
  to{
    transform:translateY(-8px);
    opacity:.5;
  }
       }
.tool-container{
  padding-top:110px;
}

.hero-btn.primary{
  width:100%;
  height:58px;
  font-size:18px;
  border-radius:16px;
}

.upload-btn{
  width:100%;
  display:block;
  margin-top:35px;
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  color:#fff;
  padding:28px 20px;
  border-radius:22px;
  font-size:30px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  box-shadow:0 10px 30px rgba(37,99,235,.25);
  text-align:center;
}

.upload-btn:hover{
  transform:translateY(-4px) scale(1.01);
}


/* TOOLS MENU */

.tools-menu{
  position:relative;
}

/* BUTTON */

.tools-trigger{
  display:flex;
  align-items:center;
  gap:12px;

  height:44px;
  padding:0 16px;

  background:transparent;
  border:none;
  cursor:pointer;

  border-radius:14px;
  transition:.25s ease;
}

.tools-trigger:hover{
  background:#f3f6fd;
}

/* 9 DOTS */

.tools-grid{
  width:18px;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:3px;
}

.tools-grid span{
  width:4px;
  height:4px;

  background:#111827;
  border-radius:50%;
}

/* TOOLS TEXT */

.tools-label{
  font-size:15px;
  font-weight:600;
  color:#111827;
}

/* ARROW */

.tools-arrow{
  font-size:12px;
  color:#111827;
  transition:.25s;
}

.tools-trigger.active .tools-arrow{
  transform:rotate(180deg);
}

/* DROPDOWN */

.dropdown-panel{
  display:none;

  position:absolute;

  top:58px;
  left:0;

  width:260px;

  background:#ffffff;

  border:1px solid #e5e7eb;

  border-radius:18px;

  padding:10px;

  z-index:99999;

  box-shadow:
  0 8px 22px rgba(0,0,0,.08);

  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

/* LINKS */

.dropdown-panel a{
  display:flex;
  align-items:center;

  padding:12px 14px;

  border-radius:12px;

  color:#111827;
  text-decoration:none;

  font-weight:600;

  transition:.22s ease;
}

.dropdown-panel a:hover{
  background:#eff6ff;
  color:#2563eb;

  transform:translateX(4px);
}

/* MOBILE */

@media(max-width:768px){

  .tools-trigger{
    height:42px;
    padding:0 12px;
    gap:10px;
  }

  .tools-label{
    font-size:14px;
  }

  .dropdown-panel{
    width:220px;
    left:auto;
    right:0;
  }

  }
/* AUTH SYSTEM */

.auth-modal{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.65);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999999;
  padding:20px;
}

.auth-card{
  width:100%;
  max-width:420px;
  background:#ffffff;
  border-radius:30px;
  padding:34px 26px;
  position:relative;
  animation:authPop .25s ease;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}

@keyframes authPop{
  from{
    opacity:0;
    transform:scale(.92);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.close-auth{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border:none;
  border-radius:12px;
  background:#f1f5f9;
  cursor:pointer;
  font-size:18px;
  transition:.2s;
}

.close-auth:hover{
  background:#e2e8f0;
  transform:rotate(90deg);
}

.auth-logo-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}

.auth-logo{
  width:70px;
  height:70px;
  object-fit:contain;
}

.auth-card h2{
  text-align:center;
  font-size:32px;
  margin-bottom:22px;
  color:#0f172a;
}

.google-btn{
  height:56px;
  border:1px solid #dbe4f5;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  cursor:pointer;
  transition:.25s;
  font-weight:700;
  margin-bottom:22px;
}

.google-btn img{
  width:24px;
  height:24px;
}

.google-btn:hover{
  transform:translateY(-2px);
  border-color:#2563eb;
  background:#f8fbff;
}

.auth-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.input-box{
  position:relative;
}

.input-box span{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  font-size:18px;
}

.input-box input{
  width:100%;
  height:58px;
  border-radius:16px;
  border:1px solid #dbe4f5;
  padding:0 18px 0 52px;
  font-size:16px;
  outline:none;
  transition:.2s;
}

.input-box input:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.auth-submit{
  height:58px;
  border:none;
  border-radius:18px;
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
  transition:.25s;
}

.auth-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 35px rgba(37,99,235,.22);
}

.auth-submit:active{
  transform:scale(.97);
}

.auth-switch{
  text-align:center;
  color:#64748b;
  margin-top:6px;
}

.auth-switch a{
  color:#2563eb;
  font-weight:700;
}

.forgot-link{
  color:#2563eb;
  text-align:right;
  font-size:14px;
  font-weight:700;
}

@media(max-width:600px){

  .auth-card{
    padding:28px 18px;
    border-radius:24px;
  }

  .auth-card h2{
    font-size:26px;
  }

                  }


.tools-menu{
  margin-left:4px;
  }

/* PERFORMANCE FIX */

.dropdown-panel{
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.logo-glow{
  animation:rotateGlow 20s linear infinite;
  filter:blur(10px);
  opacity:.35;
}

.floating{
  animation:floatingCard 8s ease-in-out infinite;
}

.glow-btn::before{
  animation:shine 6s infinite;
}

.tool-card,
.preview-card,
.tool-panel{
  box-shadow:0 6px 18px rgba(0,0,0,.06);
    }

.seo-section{
  width:100%;
  max-width:1100px;
  margin:70px auto;
  padding:25px;
  line-height:1.8;
  color:#d1d5db;
}

.seo-section h1,
.seo-section h2{
  margin-top:25px;
  margin-bottom:15px;
  color:#fff;
}

.seo-section ul{
  padding-left:20px;
}

.seo-section details{
  margin-top:20px;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;
  padding:15px;
  background:rgba(255,255,255,0.04);
}

.seo-section summary{
  cursor:pointer;
  font-weight:bold;
  font-size:18px;
  }

.site-footer{
  background:#050816;
  padding:60px 20px 35px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:60px;
}

.footer-brand h2{
  color:#fff;
  font-size:42px;
  margin:0;
}

.footer-brand p{
  color:#94a3b8;
  margin-top:15px;
  font-size:18px;
}

.footer-links{
  margin-top:35px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
}

.footer-links a:hover{
  color:#60a5fa;
}

.footer-socials{
  margin-top:35px;
  display:flex;
  justify-content:center;
  gap:18px;
}

.footer-socials a{
  width:60px;
  height:60px;
  background:rgba(255,255,255,.05);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-socials img{
  width:30px;
  height:30px;
}

.footer-bottom{
  margin-top:35px;
  color:#64748b;
}

@media(max-width:768px){

  .footer-brand h2{
    font-size:32px;
  }

  }

.modern-header{
  position:sticky;
  top:0;
  z-index:999;
  width:calc(100% - 16px);
  max-width:1600px;
  margin:15px auto;
  padding:18px 22px;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  0 10px 35px rgba(15,23,42,.08),
  0 2px 10px rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.06);
}

/* LEFT MENU */

.menu-btn{
  width:58px;
  height:58px;
  border:none;
  background:transparent;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:7px;
  cursor:pointer;
}

.menu-btn span{
  width:34px;
  height:4px;
  background:#0f172a;
  border-radius:10px;
  transition:.3s;
}

.menu-btn:hover span:nth-child(1){
  transform:translateX(4px);
}

.menu-btn:hover span:nth-child(2){
  transform:translateX(-4px);
}

.menu-btn:hover span:nth-child(3){
  transform:translateX(4px);
}

/* BRAND */

.brand-wrap{
  display:flex;
  align-items:center;
  gap:18px;
  text-decoration:none;
}

.brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
}

.brand-name{
  margin:0;
  font-size:48px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-1px;
}

.brand-name span{
  color:#ef4444;
}

/* RIGHT GRID */

.apps-btn{
  width:58px;
  height:58px;
  border:none;
  background:transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

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

.apps-grid span{
  width:8px;
  height:8px;
  background:#0f172a;
  border-radius:50%;
  transition:.3s;
}

.apps-btn:hover .apps-grid span{
  transform:scale(1.15);
}

/* MOBILE */

@media(max-width:768px){

  .modern-header{
    padding:14px 16px;
    border-radius:22px;
    width:calc(100% - 16px);
  }

  .brand-logo{
    width:42px;
    height:42px;
  }

  .brand-name{
    font-size:28px;
  }

  .menu-btn,
  .apps-btn{
    width:46px;
    height:46px;
  }

  .menu-btn span{
    width:26px;
    height:3px;
  }

  .apps-grid span{
    width:6px;
    height:6px;
  }

  }

.modern-header{
  position:sticky;
  top:0;
  z-index:1000;

  margin:12px auto;
  width:calc(100% - 16px);
  max-width:1600px;

  box-sizing:border-box;

  padding:14px 18px;

  background:#ffffff;

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

  border:1px solid rgba(15,23,42,.06);
  border-radius:22px;

  box-shadow:
    0 10px 35px rgba(15,23,42,.08),
    0 2px 10px rgba(15,23,42,.04);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
      }

body{
  margin:0;
  padding:0;
  background:#eef2ff;
}

.wrap{
  padding-top:0 !important;
}

.hero.modern-hero{
  margin-top:0 !important;
  padding-top:12px !important;
  }

@media(max-width:768px){

  .hero-preview{
    display:none !important;
  }

  .hero-top{
    grid-template-columns:1fr !important;
  }

  .hero-copy-block{
    width:100%;
  }

}


.trust-section{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:14px;
margin:10px 0 35px;
}

.trust-box{
padding:14px 18px;
border:1px solid #e5e7eb;
border-radius:16px;
background:#fff;
font-size:14px;
font-weight:600;
text-align:center;
transition:.3s;
}

.trust-box:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.06);
  }

.seo-content{
max-width:900px;
margin:40px auto;
padding:24px;
background:#fff;
border:1px solid #e5e7eb;
border-radius:20px;
}

.seo-content h2{
font-size:28px;
margin-bottom:10px;
}

.seo-content p,
.seo-content li{
color:#475569;
line-height:1.8;
font-size:15px;
}

.hidden-content{
display:none;
margin-top:15px;
}

.read-more-btn{
margin-top:15px;
padding:12px 20px;
border:1px solid #111;
background:#fff;
border-radius:999px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.read-more-btn:hover{
transform:scale(1.04);
}

.footer{
margin-top:50px;
padding:30px 20px;
border-top:1px solid #eee;
text-align:center;
background:#fff;
}

.footer-links{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:15px;
}

.footer-links a{
text-decoration:none;
color:#333;
font-size:14px;
  }

/* MOBILE MENU */

.menu-btn{
width:46px;
height:46px;
border:none;
background:#fff;
border-radius:14px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:5px;
cursor:pointer;
box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.menu-btn span{
width:22px;
height:2.5px;
background:#111;
border-radius:10px;
display:block;
}

/* SIDEBAR */

.mobile-menu{
position:fixed;
top:0;
left:-100%;
width:85%;
max-width:340px;
height:100vh;
background:#fff;
z-index:99999;
overflow-y:auto;
padding:25px;
transition:.35s ease;
box-shadow:0 0 40px rgba(0,0,0,.12);
}

/* TOP */

.menu-top{
display:flex;
justify-content:flex-end;
margin-bottom:20px;
}

.close-menu{
border:none;
background:none;
font-size:34px;
cursor:pointer;
color:#111;
}

/* SECTION */

.menu-section{
margin-bottom:35px;
}

.menu-section h3{
font-size:15px;
color:#8b8b8b;
margin-bottom:18px;
font-weight:700;
letter-spacing:.5px;
}

/* LINKS */

.menu-section a{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
color:#111827;
font-size:20px;
font-weight:600;
padding:14px 0;
border-bottom:1px solid #f1f5f9;
transition:.25s;
}

.menu-section a:hover{
padding-left:8px;
color:#2563eb;
}

/* MOBILE */

@media(max-width:768px){

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

.menu-section a{
font-size:18px;
}

  }

.mobile-menu{
left:-100%;
transition:.35s ease;
  }

.mobile-menu.active{
  left:0 !important;
}

/* COOKIE CONSENT BANNER */

#cookieBanner{
position:fixed;
bottom:20px;
left:20px;
right:20px;
background:#0f172a;
color:#fff;
padding:20px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
z-index:999999;
display:none;
font-family:Arial,sans-serif;
max-width:900px;
margin:auto;
border:1px solid rgba(255,255,255,0.08);
}

.cookie-wrap{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}

.cookie-text{
flex:1;
font-size:15px;
line-height:1.7;
color:#cbd5e1;
}

.cookie-text a{
color:#38bdf8;
text-decoration:none;
}

.cookie-buttons{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.cookie-btn{
padding:12px 20px;
border-radius:12px;
font-size:14px;
cursor:pointer;
border:2px solid #334155;
background:transparent;
color:#fff;
transition:0.3s;
font-weight:600;
}

.cookie-btn:hover{
transform:translateY(-2px);
}

.accept-btn{
background:#2563eb;
border-color:#2563eb;
}

.decline-btn{
background:transparent;
}

@media(max-width:768px){

#cookieBanner{
left:12px;
right:12px;
bottom:12px;
padding:18px;
}

.cookie-wrap{
flex-direction:column;
align-items:flex-start;
}

.cookie-buttons{
width:100%;
}

.cookie-btn{
flex:1;
width:100%;
}

  }

/* FAQ SECTION */

.faq-section{
margin-top:50px;
padding:30px;
background:#f8fbff;
border:2px solid #dbeafe;
border-radius:22px;
}

.faq-section h2{
margin-top:0;
font-size:28px;
color:#0f172a;
margin-bottom:25px;
}

.faq-item{
padding:18px 0;
border-bottom:1px solid #dbeafe;
}

.faq-item:last-child{
border-bottom:none;
}

.faq-item h3{
margin:0 0 10px;
font-size:18px;
color:#1e293b;
}

.faq-item p{
margin:0;
line-height:1.7;
color:#475569;
font-size:16px;
}

@media(max-width:768px){

.faq-section{
padding:22px;
}

.faq-section h2{
font-size:24px;
}

.faq-item h3{
font-size:17px;
}

}

/* ABOUT PAGE */

.about-hero{
padding:90px 20px 70px;
text-align:center;
background:linear-gradient(135deg,#eff6ff,#dbeafe);
}

.about-hero h1{
font-size:48px;
margin:0;
color:#0f172a;
}

.about-hero p{
max-width:800px;
margin:25px auto 0;
font-size:18px;
line-height:1.8;
color:#475569;
}

.about-wrap{
max-width:1100px;
margin:auto;
padding:70px 20px;
}

.about-section{
margin-bottom:60px;
}

.about-section h2{
font-size:34px;
margin-bottom:20px;
color:#0f172a;
}

.about-section p{
font-size:17px;
line-height:1.9;
color:#475569;
}

.about-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
margin-top:35px;
}

.about-card{
background:#fff;
border:2px solid #dbeafe;
border-radius:22px;
padding:30px;
transition:.3s;
box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.about-card:hover{
transform:translateY(-5px);
}

.about-card h3{
margin-top:0;
font-size:22px;
color:#0f172a;
}

.about-card p{
margin-bottom:0;
color:#64748b;
line-height:1.7;
}

.values-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.value-box{
background:#eff6ff;
padding:25px;
border-radius:18px;
border:1px solid #bfdbfe;
}

.value-box h3{
margin-top:0;
color:#1d4ed8;
}

.about-cta{
margin-top:70px;
text-align:center;
background:#0f172a;
color:#fff;
padding:60px 25px;
border-radius:28px;
}

.about-cta h2{
margin-top:0;
font-size:38px;
}

.about-cta p{
color:#cbd5e1;
max-width:700px;
margin:20px auto;
line-height:1.8;
}

.about-btn{
display:inline-block;
margin-top:20px;
padding:16px 34px;
background:#2563eb;
color:#fff;
text-decoration:none;
border-radius:14px;
font-weight:700;
transition:.3s;
}

.about-btn:hover{
transform:scale(1.05);
}

@media(max-width:768px){

.about-hero h1{
font-size:34px;
}

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

.about-section h2{
font-size:28px;
}

.about-cta h2{
font-size:30px;
}

}
