
:root{
  --bg:#071225;
  --panel:rgba(255,255,255,.05);
  --border:rgba(255,255,255,.10);
  --text:#f5f7fb;
  --muted:rgba(255,255,255,.72);
  --teal:#16d5ff;
  --orange:#ff7a1a;
  --max:1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 8% 0%, rgba(22,213,255,.10), transparent 60%),
    radial-gradient(900px 500px at 100% 10%, rgba(255,90,24,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 60%),
    var(--bg);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(14px);
  background:linear-gradient(180deg, rgba(7,18,37,.96), rgba(7,18,37,.90));
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:grid;
  grid-template-columns:140px minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  padding:10px 0;
}

.logo-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-width:0;
}

.logo-wrap img{
  height:40px;
  width:auto;
  max-width:100%;
  object-fit:contain;
}

.main-nav{
  display:flex;
  justify-content:center;
  min-width:0;
}

.main-nav > ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:nowrap;
}

.main-nav > ul > li{position:relative}

.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:42px;
  padding:9px 13px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  line-height:1;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  white-space:nowrap;
}

.nav-link:hover,
.active > .nav-link,
.active-link{
  background:rgba(22,213,255,.10);
  border-color:rgba(22,213,255,.30);
}

.nav-arrow{font-size:11px;opacity:.8}

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex:0 0 auto;
}

.quick-contact{
  padding:9px 13px;
}

.phone-chip,
.btn-demo,
.btn-offer,
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:9px 14px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.10);
  white-space:nowrap;
}

.phone-chip,
.btn-outline{background:rgba(255,255,255,.04)}
.phone-chip{
  border-color:rgba(255,122,26,.35);
  font-size:13px;
  padding:9px 12px;
}
.btn-demo{background:#0ea5e9;color:#fff}
.btn-offer{background:var(--orange);color:#fff}

.mobile-toggle{
  display:none;
  color:#fff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  min-width:42px;
  min-height:42px;
}

/* MEGA MENU */
.has-mega::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:38px;
}

.mega-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  width:min(980px, calc(100vw - 32px));
  padding:18px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(10,26,52,.98), rgba(8,20,40,.98));
  box-shadow:0 30px 90px rgba(0,0,0,.38);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.18s ease;
  z-index:99999;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.mega-grid{
  display:grid;
  grid-template-columns:1fr 1fr 300px;
  gap:18px;
}

.mega-col{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

.mega-col h4,
.mega-promo .tag{
  margin:0 0 12px;
  font-size:13px;
  font-weight:800;
  color:var(--teal);
  text-transform:uppercase;
  letter-spacing:.05em;
}

.mega-col a{
  display:block;
  padding:10px 0;
  font-size:15px;
  font-weight:600;
  color:#edf4ff;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.mega-col a:last-child{border-bottom:0}

.mega-promo{
  padding:20px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
}

.mega-promo h3{margin:0 0 10px;font-size:22px;line-height:1.2}
.mega-promo p{margin:0 0 16px;color:var(--muted);line-height:1.6}
.mega-btn{display:inline-flex;padding:11px 16px;border-radius:14px;background:rgba(22,213,255,.12);border:1px solid rgba(22,213,255,.32);font-weight:800}

/* HERO */
.hero{padding:74px 0 50px}
.hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:44px;align-items:center}
.eyebrow{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10);font-size:13px;font-weight:800}
.hero h1{margin:16px 0 12px;font-size:clamp(40px,5.8vw,68px);line-height:1.06;max-width:680px}
.hero p{margin:0;max-width:620px;color:var(--muted);font-size:18px;line-height:1.7}
.hero-actions{margin-top:24px;display:flex;gap:12px;flex-wrap:wrap}
.hero-tags{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}
.tag-pill{display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10);font-size:14px;font-weight:700}
.hero-visual{padding:18px;border-radius:30px;border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03))}
.hero-visual img{border-radius:24px;width:100%;max-width:560px;margin-left:auto}

/* COMMON SECTIONS */
.section,.page-hero{padding:64px 0}
.section-head{max-width:860px;margin:0 auto 28px;text-align:center}
.section-head h2{margin:0 0 10px;font-size:42px;line-height:1.15}
.section-head p{margin:0;color:var(--muted);font-size:17px;line-height:1.7}
.grid{display:grid;gap:18px}.grid-4{grid-template-columns:repeat(4,1fr)}.grid-3{grid-template-columns:repeat(3,1fr)}.grid-2{grid-template-columns:repeat(2,1fr)}
.card{padding:24px;border-radius:26px;border:1px solid rgba(255,255,255,.09);background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03))}
.card h3{margin:0 0 10px;font-size:22px;line-height:1.25}.card p{margin:0;color:var(--muted);line-height:1.7}.card .mini{font-size:13px;color:var(--teal);font-weight:800;text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px}.card img.thumb{border-radius:18px;margin-bottom:16px;aspect-ratio:16/10;object-fit:cover;width:100%}
.split{display:grid;grid-template-columns:1fr 1fr;gap:18px}

/* TRUST BAR */
.trust-bar{padding:10px 0 22px}
.trust-bar-inner{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.trust-item{display:flex;align-items:center;justify-content:center;min-height:56px;padding:12px 14px;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);font-size:14px;font-weight:800;text-align:center}

/* DEMO */
.demo-section{padding:72px 0}
.demo-section .container{max-width:1360px}
.demo-wrap{display:grid;grid-template-columns:.82fr 1.18fr;gap:32px;align-items:center}
.demo-content h2{margin:14px 0 12px;font-size:42px;line-height:1.12}
.demo-content p{margin:0;color:var(--muted);font-size:17px;line-height:1.75;max-width:620px}
.demo-frame-card{padding:18px;border-radius:28px;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));box-shadow:0 30px 80px rgba(0,0,0,.25)}
.demo-frame-card iframe{width:100%;height:580px;border:0;border-radius:20px;background:#000}

/* CTA */
.cta-band,.crm-cta-band{padding:28px;border-radius:28px;border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));display:flex;align-items:center;justify-content:space-between;gap:20px}
.cta-band h3,.crm-cta-band h3{margin:0 0 10px;font-size:28px}
.cta-band p,.crm-cta-band p{margin:0;color:var(--muted);line-height:1.7}

/* CRM */
.crm-showcase-section{padding:72px 0}
.crm-proof-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:28px}
.crm-proof-card{border-radius:24px;overflow:hidden;border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));box-shadow:0 24px 60px rgba(0,0,0,.20)}
.crm-proof-card img{width:100%;display:block;object-fit:cover;aspect-ratio:16/10}
.crm-proof-content{padding:22px}.crm-proof-content h3{margin:8px 0 10px;font-size:24px;line-height:1.25}.crm-proof-content p{margin:0;color:var(--muted);line-height:1.7}

/* FORMS */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:20px}
.form-card input,.form-card textarea,.form-card select{width:100%;padding:13px 14px;margin-bottom:12px;border-radius:14px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.04);color:var(--text)}
.form-card textarea{min-height:140px}.info-stack{display:grid;gap:16px}.info-item{padding:20px;border-radius:22px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.04)}

/* PRICE */
.price-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:10px}.price-card{padding:24px;border-radius:26px;border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03))}.price-card.featured{border-color:rgba(255,90,24,.35)}.badge{display:inline-flex;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);margin-bottom:12px}.price{font-size:36px;font-weight:900;margin:10px 0}.price small{font-size:14px;color:var(--muted)}.list-clean{list-style:none;padding:0;margin:16px 0 0}.list-clean li{padding:8px 0;color:var(--muted);border-bottom:1px solid rgba(255,255,255,.06)}

/* FOOTER */
.site-footer{padding:34px 0 50px;border-top:1px solid rgba(255,255,255,.07);background:rgba(0,0,0,.12)}
.footer-grid{display:grid;grid-template-columns:1.1fr .9fr .9fr .9fr;gap:18px}.footer-col a{display:block;color:var(--muted);margin:8px 0}.footer-col p,.footer-col small,.muted{color:var(--muted);line-height:1.7}

/* RESPONSIVE */
@media(max-width:1360px){
  .header-inner{grid-template-columns:126px minmax(0,1fr) auto;gap:12px}
  .nav-link{padding:9px 11px;font-size:13px}
  .quick-contact{display:none}
}

@media(max-width:1240px){
  .phone-chip{display:none}
  .header-inner{grid-template-columns:126px minmax(0,1fr) auto}
  .hero-grid{grid-template-columns:1fr 1fr;gap:32px}
  .price-grid,.grid-4{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:1100px){
  .header-inner{grid-template-columns:126px minmax(0,1fr)}
  .header-actions{grid-column:1/-1;justify-content:center;padding-top:2px}
  .demo-wrap,.crm-proof-grid{grid-template-columns:1fr}
  .demo-frame-card iframe{height:500px}
  .trust-bar-inner{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:980px){
  .container{width:min(var(--max), calc(100% - 32px))}
  .mobile-toggle{display:inline-flex;justify-self:end;align-items:center;justify-content:center}
  .header-inner{grid-template-columns:auto auto}
  .main-nav{display:none;grid-column:1/-1;justify-content:stretch}
  .main-nav.open{display:block}
  .main-nav > ul{flex-direction:column;align-items:stretch;width:100%;gap:10px}
  .nav-link{width:100%;justify-content:space-between}
  .header-actions{display:none}
  .hero-grid,.split,.contact-grid,.footer-grid,.grid-3,.grid-2,.grid-4,.price-grid,.mega-grid{grid-template-columns:1fr}
  .hero{padding:56px 0 44px}
  .hero h1{font-size:42px;max-width:100%}
  .hero p{max-width:100%}
  .hero-visual img{max-width:100%;margin:0 auto}
  .mega-menu{position:static;width:100%;transform:none;margin-top:10px;opacity:1;visibility:visible;pointer-events:auto;display:none}
  .has-mega.open .mega-menu{display:block}
  .has-mega::after{display:none}
  .cta-band,.crm-cta-band{flex-direction:column;align-items:flex-start}
}

@media(max-width:760px){
  .trust-bar-inner{grid-template-columns:repeat(2,1fr)}
  .section-head h2,.demo-content h2{font-size:34px}
  .demo-frame-card iframe{height:420px}
}

@media(max-width:600px){
  .demo-frame-card iframe{height:360px}
  .trust-bar-inner{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .section,.page-hero{padding:48px 0}
}
/* =========================================
   FINAL 2-LAYER HEADER FIX
========================================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,18,37,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.top-bar{
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.025);
}

.top-bar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:44px;
}

.top-bar-left{
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  white-space: nowrap;
}

.top-bar-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.top-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:8px 10px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
}

.top-link:hover,
.top-link.active-link{
  background: rgba(255,255,255,.06);
  color: #fff;
}

.top-btn{
  min-height:36px;
  padding:8px 12px;
  border-radius:12px;
  font-size:13px;
}

.main-header{
  background: rgba(7,18,37,.92);
}

.header-inner{
  display:grid;
  grid-template-columns: 170px minmax(0,1fr);
  align-items:center;
  gap:24px;
  min-height:72px;
}

.logo-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-width:0;
}

.logo-wrap img{
  height:42px !important;
  width:auto !important;
  max-width:100%;
  object-fit:contain;
  display:block;
}

.main-nav{
  min-width:0;
  display:flex;
  justify-content:center;
}

.main-nav > ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:nowrap;
}

.main-nav > ul > li{
  position:relative;
}

.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 15px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  white-space:nowrap;
  font-size:14px;
  font-weight:700;
  line-height:1;
}

.nav-link:hover,
.active > .nav-link{
  background:rgba(22,213,255,.10);
  border-color:rgba(22,213,255,.28);
}

.mobile-toggle{
  display:none;
  color:#fff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  min-width:42px;
  min-height:42px;
  cursor:pointer;
}

/* mega menu korunuyor */
.has-mega::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:34px;
}

.mega-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  width:min(980px, calc(100vw - 32px));
  padding:18px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(10,26,52,.98), rgba(8,20,40,.98));
  box-shadow:0 30px 90px rgba(0,0,0,.38);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.18s ease;
  z-index:99999;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.mega-grid{
  display:grid;
  grid-template-columns:1fr 1fr 300px;
  gap:18px;
}

.mega-col{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}

.mega-col h4,
.mega-promo .tag{
  margin:0 0 12px;
  font-size:13px;
  font-weight:800;
  color:var(--teal);
  text-transform:uppercase;
  letter-spacing:.05em;
}

.mega-col a{
  display:block;
  padding:10px 0;
  font-size:15px;
  font-weight:600;
  color:#edf4ff;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.mega-col a:last-child{
  border-bottom:0;
}

.mega-promo{
  padding:20px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
}

.mega-promo h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
}

.mega-promo p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.6;
}

.mega-btn{
  display:inline-flex;
  padding:11px 16px;
  border-radius:14px;
  background:rgba(22,213,255,.12);
  border:1px solid rgba(22,213,255,.32);
  font-weight:800;
}

/* top bar buttons mevcut sistemle uyumlu */
.btn-demo{
  background:#18aef5;
  color:#fff;
}

.btn-offer{
  background:#ff7a1a;
  color:#fff;
}

@media (max-width: 1280px){
  .main-nav > ul{
    gap:8px;
  }

  .nav-link{
    padding:10px 13px;
    font-size:13px;
  }

  .top-bar-left{
    font-size:11px;
  }
}

@media (max-width: 1080px){
  .top-bar-left{
    display:none;
  }

  .top-bar-inner{
    justify-content:flex-end;
  }
}

@media (max-width: 980px){
  .header-inner{
    grid-template-columns:auto auto;
  }

  .mobile-toggle{
    display:inline-flex;
    justify-self:end;
  }

  .main-nav{
    display:none;
    grid-column:1 / -1;
    justify-content:stretch;
  }

  .main-nav.open{
    display:block;
  }

  .main-nav > ul{
    flex-direction:column;
    align-items:stretch;
    width:100%;
    gap:10px;
  }

  .nav-link{
    width:100%;
    justify-content:flex-start;
  }

  .mega-menu{
    position:static;
    transform:none;
    width:100%;
    margin-top:10px;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    display:none;
  }

  .has-mega.open .mega-menu{
    display:block;
  }

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

  .has-mega::after{
    display:none;
  }
}

@media (max-width: 760px){
  .top-bar-inner{
    padding:8px 0;
  }

  .top-bar-right{
    width:100%;
    justify-content:center;
    gap:8px;
  }

  .top-link{
    font-size:12px;
    padding:7px 8px;
  }

  .top-btn{
    font-size:12px;
    padding:7px 10px;
  }

  .logo-wrap img{
    height:38px !important;
  }
}

@media (max-width: 560px){
  .top-link[href^="tel:"]{
    display:none;
  }
}
.has-mega{
  position: relative;
}

.has-mega::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:34px;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.price-old{
  text-decoration: line-through;
  opacity:.6;
}

.price-card .muted{
  margin-bottom:10px;
}

.price-card .badge{
  margin-bottom:12px;
}

.price-card.featured{
  border-color:rgba(24,174,245,.45);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.crm-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:center;
}

.crm-screen-card{
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow:0 24px 60px rgba(0,0,0,.20);
}

.crm-screen-card img{
  width:100%;
  display:block;
  object-fit:cover;
}

.crm-highlight-card h2{
  margin:8px 0 14px;
  font-size:34px;
  line-height:1.2;
}

@media(max-width:980px){
  .crm-hero-grid{
    grid-template-columns:1fr;
  }
}
.sector-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

.sector-card p{
  margin-top:auto;
}
.page-hero h1{
  max-width: 900px;
}

.page-hero p{
  max-width: 900px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}
.price-card .muted{
  margin-bottom:10px;
}

.price-card .badge{
  margin-bottom:12px;
}

.price-card.featured{
  border-color:rgba(24,174,245,.45);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}
/* ===== PRICING ACCORDION FINAL ===== */

.pricing-accordion-grid{
  align-items:start;
}

.accordion-card{
  padding:22px;
  border-radius:22px;
}

.accordion-card h3{
  font-size:20px;
  margin:0 0 6px;
  line-height:1.2;
}

.accordion-card.start h3{
  color:#18aef5;
}

.accordion-card.growth h3{
  color:#18c29c;
}

.accordion-card.scale h3{
  color:#ff7a1a;
}

.accordion-card .muted{
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
}

.accordion-card .price{
  font-size:28px;
  line-height:1.1;
  margin:12px 0 0;
}

.accordion-card .price small{
  font-size:13px;
}

.accordion-card .badge{
  margin-bottom:10px;
}

.btn-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:14px;
  padding:10px 14px;
  min-height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}

.btn-toggle:hover{
  background:rgba(255,255,255,.08);
}

.price-details{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .35s ease, opacity .25s ease, margin-top .25s ease;
  margin-top:0;
}

.accordion-card.active .price-details{
  max-height:700px;
  opacity:1;
  margin-top:16px;
}

.price-old{
  text-decoration:line-through;
  opacity:.6;
}

.price-card.featured{
  border-color:rgba(24,174,245,.40);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

@media(max-width:760px){
  .accordion-card h3{
    font-size:18px;
  }

  .accordion-card .price{
    font-size:24px;
  }

  .btn-toggle{
    width:100%;
  }
}
/* FEATURES PAGE */
.features-hero{
  padding-top:72px;
}

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

.features-hero-content h1{
  margin:16px 0 12px;
  font-size:clamp(38px,5.2vw,62px);
  line-height:1.08;
  max-width:760px;
}

.features-hero-content p{
  margin:0;
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.features-hero-visual{
  padding:18px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:0 24px 70px rgba(0,0,0,.20);
}

.features-hero-visual img{
  width:100%;
  border-radius:22px;
  object-fit:cover;
}

.narrow{
  max-width:920px;
}

.feature-intro-card{
  height:100%;
}

.features-highlight-section .feature-block{
  height:100%;
}

.feature-block-grid{
  align-items:stretch;
}

.feature-thumb{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:16px;
}

.feature-block-wide{
  grid-column:1 / -1;
}

.two-col-list{
  columns:2;
  column-gap:24px;
}

.feature-sales-band,
.final-features-cta{
  align-items:center;
}

.features-detail-section .card{
  height:100%;
}

.feature-block{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-block:hover{
  transform:translateY(-4px);
  border-color:rgba(22,213,255,.22);
  box-shadow:0 20px 46px rgba(0,0,0,.18);
}

@media(max-width:1100px){
  .features-hero-grid{
    grid-template-columns:1fr;
  }

  .features-hero-visual{
    max-width:760px;
  }
}

@media(max-width:980px){
  .feature-block-wide{
    grid-column:auto;
  }

  .two-col-list{
    columns:1;
  }
}

@media(max-width:760px){
  .features-hero{
    padding-top:54px;
  }

  .features-hero-content h1{
    font-size:36px;
  }

  .features-hero-content p{
    font-size:17px;
  }
}
/* =========================================
   FEATURES HERO FINAL LAYOUT
========================================= */

.features-hero{
  padding-top:72px;
}

.features-hero-grid{
  display:grid;
  grid-template-columns:1.18fr 0.82fr;
  gap:48px;
  align-items:center;
}

.features-hero-content h1{
  margin:16px 0 12px;
  font-size:clamp(38px,5.2vw,62px);
  line-height:1.08;
  max-width:760px;
}

.features-hero-content p{
  margin:0;
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.features-hero-visual{
  max-width:520px;
  width:100%;
  margin-left:auto;
  padding:10px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:0 24px 70px rgba(0,0,0,.20);
  transition:transform .28s ease, box-shadow .28s ease;
}

.features-hero-visual:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 85px rgba(0,0,0,.30);
}

.features-hero-visual img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  border-radius:16px;
}

.narrow{
  max-width:920px;
}

.feature-intro-card{
  height:100%;
}

.features-highlight-section .feature-block{
  height:100%;
}

.feature-block-grid{
  align-items:stretch;
}

.feature-thumb{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:16px;
}

.feature-block-wide{
  grid-column:1 / -1;
}

.two-col-list{
  columns:2;
  column-gap:24px;
}

.feature-sales-band,
.final-features-cta{
  align-items:center;
}

.features-detail-section .card{
  height:100%;
}

.feature-block{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-block:hover{
  transform:translateY(-4px);
  border-color:rgba(22,213,255,.22);
  box-shadow:0 20px 46px rgba(0,0,0,.18);
}

@media(max-width:1100px){
  .features-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .features-hero-visual{
    max-width:680px;
    margin:0 auto;
  }
}

@media(max-width:980px){
  .feature-block-wide{
    grid-column:auto;
  }

  .two-col-list{
    columns:1;
  }
}

@media(max-width:760px){
  .features-hero{
    padding-top:54px;
  }

  .features-hero-content h1{
    font-size:36px;
  }

  .features-hero-content p{
    font-size:17px;
  }

  .features-hero-visual{
    max-width:100%;
    padding:8px;
    border-radius:20px;
  }

  .features-hero-visual img{
    border-radius:14px;
  }
}
/* =========================================
   FEATURES HERO FINAL LAYOUT
========================================= */

.features-hero{
  padding-top:72px;
}

.features-hero-grid{
  display:grid;
  grid-template-columns:1.18fr 0.82fr;
  gap:48px;
  align-items:center;
}

.features-hero-content h1{
  margin:16px 0 12px;
  font-size:clamp(38px,5.2vw,62px);
  line-height:1.08;
  max-width:760px;
}

.features-hero-content p{
  margin:0;
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.features-hero-visual{
  max-width:520px;
  width:100%;
  margin-left:auto;
  padding:10px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:0 24px 70px rgba(0,0,0,.20);
  transition:transform .28s ease, box-shadow .28s ease;
}

.features-hero-visual:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 85px rgba(0,0,0,.30);
}

.features-hero-visual img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  border-radius:16px;
}

.narrow{
  max-width:920px;
}

.feature-intro-card{
  height:100%;
}

.features-highlight-section .feature-block{
  height:100%;
}

.feature-block-grid{
  align-items:stretch;
}

.feature-thumb{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:16px;
}

.feature-block-wide{
  grid-column:1 / -1;
}

.two-col-list{
  columns:2;
  column-gap:24px;
}

.feature-sales-band,
.final-features-cta{
  align-items:center;
}

.features-detail-section .card{
  height:100%;
}

.feature-block{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-block:hover{
  transform:translateY(-4px);
  border-color:rgba(22,213,255,.22);
  box-shadow:0 20px 46px rgba(0,0,0,.18);
}

@media(max-width:1100px){
  .features-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .features-hero-visual{
    max-width:680px;
    margin:0 auto;
  }
}

@media(max-width:980px){
  .feature-block-wide{
    grid-column:auto;
  }

  .two-col-list{
    columns:1;
  }
}

@media(max-width:760px){
  .features-hero{
    padding-top:54px;
  }

  .features-hero-content h1{
    font-size:36px;
  }

  .features-hero-content p{
    font-size:17px;
  }

  .features-hero-visual{
    max-width:100%;
    padding:8px;
    border-radius:20px;
  }

  .features-hero-visual img{
    border-radius:14px;
  }
}
/* =========================================
   NEXT LEVEL ANIMATIONS
========================================= */

/* Scroll reveal temel durum */
.reveal{
  opacity:0;
  transform:translateY(34px) scale(.985);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.22,1,.36,1);
  will-change:transform, opacity;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* Gecikmeli reveal varyasyonlari */
.reveal-delay-1{ transition-delay:.08s; }
.reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; }
.reveal-delay-4{ transition-delay:.32s; }
.reveal-delay-5{ transition-delay:.40s; }

/* Hero text animasyonu */
.features-hero-content > *{
  opacity:0;
  transform:translateY(22px);
  animation:heroFadeUp .8s cubic-bezier(.22,1,.36,1) forwards;
}

.features-hero-content > *:nth-child(1){ animation-delay:.05s; }
.features-hero-content > *:nth-child(2){ animation-delay:.13s; }
.features-hero-content > *:nth-child(3){ animation-delay:.21s; }
.features-hero-content > *:nth-child(4){ animation-delay:.29s; }
.features-hero-content > *:nth-child(5){ animation-delay:.37s; }

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

/* Hero gorsel giris */
.features-hero-visual{
  opacity:0;
  transform:translateX(24px) scale(.98);
  animation:heroVisualIn .95s cubic-bezier(.22,1,.36,1) .18s forwards;
}

@keyframes heroVisualIn{
  from{
    opacity:0;
    transform:translateX(24px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateX(0) scale(1);
  }
}

/* Premium floating glow */
.feature-block{
  isolation:isolate;
}

.feature-block::after{
  content:"";
  position:absolute;
  inset:auto -12% -30% auto;
  width:140px;
  height:140px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(22,213,255,.16), transparent 68%);
  filter:blur(18px);
  opacity:0;
  transition:opacity .28s ease, transform .28s ease;
  transform:translateY(14px);
  pointer-events:none;
  z-index:0;
}

.feature-block:hover::after{
  opacity:1;
  transform:translateY(0);
}

/* Kart iceriklerini glow ustunde tut */
.feature-block > *{
  position:relative;
  z-index:1;
}

/* Thumb hover biraz daha akici */
.feature-thumb{
  overflow:hidden;
}

.feature-thumb img{
  transition:transform .7s cubic-bezier(.22,1,.36,1), filter .4s ease;
}

.feature-block:hover .feature-thumb img{
  transform:scale(1.06);
  filter:saturate(1.08) contrast(1.03);
}

/* Mini chip yumusak parlasin */
.feature-block .mini{
  transition:color .25s ease, text-shadow .25s ease;
}

.feature-block:hover .mini{
  color:#7ee9ff;
  text-shadow:0 0 18px rgba(22,213,255,.28);
}

/* CTA band hafif canli */
.feature-sales-band,
.final-features-cta{
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-sales-band:hover,
.final-features-cta:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 46px rgba(0,0,0,.18);
  border-color:rgba(22,213,255,.22);
}

/* Hover olmayan cihazlarda gereksiz agresiflik olmasin */
@media (hover:none){
  .feature-block:hover,
  .feature-sales-band:hover,
  .final-features-cta:hover{
    transform:none;
    box-shadow:none;
  }
}

/* Reduce motion saygisi */
@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal.is-visible,
  .features-hero-content > *,
  .features-hero-visual,
  .feature-block,
  .feature-thumb img,
  .feature-sales-band,
  .final-features-cta{
    animation:none !important;
    transition:none !important;
    transform:none !important;
    opacity:1 !important;
  }
}
/* DEMO LIVE IFRAME */

.demo-live-section{
  padding:20px 0 80px;
}

.demo-live-frame-card{
  margin-top:20px;
  padding:16px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 30px 80px rgba(0,0,0,.25);
  overflow:hidden;
}

.demo-live-frame-card iframe{
  width:100%;
  height:720px;
  border:0;
  border-radius:20px;
  display:block;
  background:#000;
}

.demo-live-note{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Responsive */

@media(max-width:980px){
  .demo-live-frame-card iframe{
    height:560px;
  }
}

@media(max-width:760px){
  .demo-live-frame-card iframe{
    height:420px;
  }
}
/* =========================================
   KNOWLEDGE CENTER
========================================= */

.knowledge-hero-head{
  max-width:980px;
}

.knowledge-search{
  max-width:760px;
  margin:24px auto 0;
}

.knowledge-search input{
  width:100%;
  min-height:56px;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:16px;
}

.knowledge-tags{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.knowledge-intro-card{
  height:100%;
}

.knowledge-layout{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:22px;
  align-items:start;
}

.knowledge-sidebar{
  position:sticky;
  top:120px;
}

.knowledge-side-card{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.knowledge-side-card a{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#edf4ff;
  font-weight:700;
  transition:.2s ease;
}

.knowledge-side-card a:hover{
  background:rgba(22,213,255,.10);
  border-color:rgba(22,213,255,.24);
}

.knowledge-content{
  display:grid;
  gap:18px;
}

.knowledge-article h2,
.knowledge-faq h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.2;
}

.knowledge-article p,
.knowledge-faq p{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

.faq-item{
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

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

.faq-item h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.3;
}

.knowledge-cta{
  align-items:center;
}

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

  .knowledge-sidebar{
    position:static;
  }
}

@media(max-width:760px){
  .knowledge-article h2,
  .knowledge-faq h2{
    font-size:24px;
  }

  .faq-item h3{
    font-size:18px;
  }
}
/* =========================================
   KNOWLEDGE CENTER PRO
========================================= */

.knowledge-hero-head{
  max-width:980px;
}

.knowledge-search{
  max-width:760px;
  margin:24px auto 0;
}

.knowledge-search input{
  width:100%;
  min-height:56px;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:16px;
}

.knowledge-tags{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.knowledge-icon-grid{
  align-items:stretch;
}

.knowledge-icon-card{
  height:100%;
  position:relative;
  overflow:hidden;
}

.knowledge-icon{
  width:52px;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  margin-bottom:14px;
  font-size:22px;
  font-weight:800;
  color:#16d5ff;
  background:rgba(22,213,255,.10);
  border:1px solid rgba(22,213,255,.22);
  box-shadow:0 10px 24px rgba(22,213,255,.10);
}

.knowledge-layout{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:22px;
  align-items:start;
}

.knowledge-sidebar{
  position:sticky;
  top:120px;
}

.knowledge-side-card{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.knowledge-side-card a{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#edf4ff;
  font-weight:700;
  transition:.2s ease;
}

.knowledge-side-card a:hover{
  background:rgba(22,213,255,.10);
  border-color:rgba(22,213,255,.24);
}

.knowledge-content{
  display:grid;
  gap:18px;
}

.knowledge-article h2,
.knowledge-faq h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.2;
}

.knowledge-article p,
.knowledge-faq p{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

.faq-accordion{
  margin-top:6px;
}

.faq-acc-item{
  border-top:1px solid rgba(255,255,255,.08);
}

.faq-acc-item:last-child{
  border-bottom:1px solid rgba(255,255,255,.08);
}

.faq-acc-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
  background:none;
  border:0;
  color:#fff;
  text-align:left;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
}

.faq-acc-icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  flex:0 0 auto;
  transition:.2s ease;
}

.faq-acc-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .32s ease, opacity .24s ease, padding-bottom .24s ease;
  padding-bottom:0;
}

.faq-acc-answer p{
  margin:0;
  padding:0 0 18px;
}

.faq-acc-item.active .faq-acc-answer{
  max-height:220px;
  opacity:1;
  padding-bottom:2px;
}

.faq-acc-item.active .faq-acc-icon{
  transform:rotate(45deg);
  background:rgba(22,213,255,.10);
  border-color:rgba(22,213,255,.24);
}

.knowledge-cta{
  align-items:center;
}

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

  .knowledge-sidebar{
    position:static;
  }
}

@media(max-width:760px){
  .knowledge-article h2,
  .knowledge-faq h2{
    font-size:24px;
  }

  .faq-acc-question{
    font-size:16px;
  }
}
/* IMAGE CARD */

.knowledge-card-thumb{
  margin-bottom:16px;
  border-radius:18px;
  overflow:hidden;
}

.knowledge-card-thumb img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.knowledge-icon-card:hover .knowledge-card-thumb img{
  transform:scale(1.05);
}
/* =========================================
   KNOWLEDGE CENTER FINAL
========================================= */

.knowledge-hero-head{
  max-width:980px;
}

.knowledge-search{
  max-width:760px;
  margin:24px auto 0;
}

.knowledge-search input{
  width:100%;
  min-height:56px;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:16px;
}

.knowledge-tags{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.knowledge-icon-grid{
  align-items:stretch;
}

.knowledge-icon-card{
  height:100%;
  position:relative;
  overflow:hidden;
}

.knowledge-card-thumb{
  margin-bottom:16px;
  border-radius:18px;
  overflow:hidden;
}

.knowledge-card-thumb img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.knowledge-icon-card:hover .knowledge-card-thumb img{
  transform:scale(1.05);
}

.knowledge-icon{
  width:52px;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  margin-bottom:14px;
  font-size:22px;
  font-weight:800;
  color:#16d5ff;
  background:rgba(22,213,255,.10);
  border:1px solid rgba(22,213,255,.22);
  box-shadow:0 10px 24px rgba(22,213,255,.10);
}

.knowledge-layout{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:22px;
  align-items:start;
}

.knowledge-sidebar{
  position:sticky;
  top:120px;
}

.knowledge-side-card{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.knowledge-side-card a{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#edf4ff;
  font-weight:700;
  transition:.2s ease;
}

.knowledge-side-card a:hover{
  background:rgba(22,213,255,.10);
  border-color:rgba(22,213,255,.24);
}

.knowledge-content{
  display:grid;
  gap:18px;
}

.knowledge-article h2,
.knowledge-faq h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.2;
}

.knowledge-article p,
.knowledge-faq p{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

.faq-accordion{
  margin-top:6px;
}

.faq-acc-item{
  border-top:1px solid rgba(255,255,255,.08);
}

.faq-acc-item:last-child{
  border-bottom:1px solid rgba(255,255,255,.08);
}

.faq-acc-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
  background:none;
  border:0;
  color:#fff;
  text-align:left;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
}

.faq-acc-icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  flex:0 0 auto;
  transition:.2s ease;
}

.faq-acc-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .32s ease, opacity .24s ease, padding-bottom .24s ease;
  padding-bottom:0;
}

.faq-acc-answer p{
  margin:0;
  padding:0 0 18px;
}

.faq-acc-item.active .faq-acc-answer{
  max-height:220px;
  opacity:1;
  padding-bottom:2px;
}

.faq-acc-item.active .faq-acc-icon{
  transform:rotate(45deg);
  background:rgba(22,213,255,.10);
  border-color:rgba(22,213,255,.24);
}

.knowledge-cta{
  align-items:center;
}

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

  .knowledge-sidebar{
    position:static;
  }
}

@media(max-width:760px){
  .knowledge-article h2,
  .knowledge-faq h2{
    font-size:24px;
  }

  .faq-acc-question{
    font-size:16px;
  }
}
/* =========================================
   CONTACT PAGE PRO
========================================= */

.contact-hero-head{
  max-width:980px;
}

.contact-tags{
  justify-content:center;
  margin-top:18px;
}

.contact-grid-pro{
  align-items:start;
}

.contact-form-card,
.contact-info-card{
  height:100%;
}

.contact-form-card h3{
  margin-bottom:8px;
}

.contact-highlight-card{
  border-color:rgba(22,213,255,.18);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.contact-schedule-section{
  padding-top:8px;
}

.contact-calendly-shell{
  margin-top:14px;
}

.contact-calendly-frame-card{
  padding:16px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 30px 80px rgba(0,0,0,.22);
  overflow:hidden;
}

.contact-calendly-frame-card iframe{
  width:100%;
  height:760px;
  border:0;
  border-radius:20px;
  display:block;
  background:#fff;
}

.contact-calendly-note{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

@media(max-width:1100px){
  .contact-calendly-frame-card iframe{
    height:700px;
  }
}

@media(max-width:980px){
  .contact-calendly-frame-card iframe{
    height:620px;
  }
}

@media(max-width:760px){
  .contact-calendly-frame-card{
    padding:10px;
    border-radius:20px;
  }

  .contact-calendly-frame-card iframe{
    height:540px;
    border-radius:14px;
  }
}

@media(max-width:560px){
  .contact-calendly-frame-card iframe{
    height:480px;
  }
}
/* =========================================
   BLOG SYSTEM
========================================= */

.blog-hero-head{
  max-width:980px;
}

.blog-filter-bar{
  margin:24px auto 0;
  max-width:980px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 260px auto;
  gap:12px;
}

.blog-filter-bar input,
.blog-filter-bar select{
  width:100%;
  min-height:52px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:15px;
}

.blog-tag-row{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.blog-grid{
  align-items:stretch;
}

.blog-card{
  height:100%;
  display:flex;
  flex-direction:column;
}

.blog-card-thumb{
  display:block;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
}

.blog-card-thumb img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.blog-card:hover .blog-card-thumb img{
  transform:scale(1.04);
}

.blog-card-meta{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.blog-dot{
  opacity:.55;
}

.blog-card h3{
  margin:0 0 10px;
}

.blog-card h3 a{
  color:#fff;
}

.blog-card p{
  color:var(--muted);
}

.blog-card-actions{
  margin-top:auto;
  padding-top:12px;
}

.article-hero-wrap{
  max-width:900px;
}

.article-meta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin:12px 0;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.article-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:22px;
  align-items:start;
}

.article-main{
  overflow:hidden;
}

.article-cover{
  border-radius:20px;
  overflow:hidden;
  margin-bottom:18px;
}

.article-cover img{
  width:100%;
  aspect-ratio:16/8;
  object-fit:cover;
  display:block;
}

.article-content h2{
  margin:22px 0 10px;
  font-size:30px;
  line-height:1.2;
}

.article-content p,
.article-content li{
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
}

.article-content ul,
.article-content ol{
  padding-left:20px;
}

.article-cta-box{
  margin-top:28px;
  padding:22px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.article-sidebar{
  display:grid;
  gap:18px;
  position:sticky;
  top:120px;
}

.article-side-card a{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#edf4ff;
  font-weight:700;
  margin-top:10px;
  transition:.2s ease;
}

.article-side-card a:hover{
  background:rgba(22,213,255,.10);
  border-color:rgba(22,213,255,.24);
}

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

  .article-sidebar{
    position:static;
  }
}

@media(max-width:900px){
  .blog-filter-bar{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .article-content h2{
    font-size:24px;
  }

  .article-content p,
  .article-content li{
    font-size:15px;
  }
}
/* ===== TOURIXPRO PRICING FINAL ===== */
.pricing-accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.price-card {
  background: #111;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,122,0,0.5);
}

.price-card .badge {
  background: #ff7a00;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.price small {
  font-size: 14px;
  color: #aaa;
}

.btn-toggle {
  margin-top: 10px;
  cursor: pointer;
  color: #ff7a00;
  font-weight: 600;
}

.price-details {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.price-card.active .price-details {
  max-height: 1000px;
  margin-top: 15px;
}

.list-clean {
  list-style: none;
  padding: 0;
}

.list-clean li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #ddd;
}

.btn-offer {
  background: #ff7a00;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-offer:hover {
  background: #ff5500;
}