:root{
  --red:#b40009;
  --red-dark:#850006;
  --dark:#252525;
  --text:#1f2933;
  --muted:#667085;
  --soft:#f6f7f9;
  --white:#ffffff;
  --border:#e6e8ec;
  --shadow:0 18px 45px rgba(20,20,20,.10);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.container{
  width:min(1180px,calc(100% - 36px));
  margin:0 auto;
}
.topbar{
  background:var(--red);
  color:#fff;
  font-size:14px;
}
.topbar .container{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar a{font-weight:700}
.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  color:var(--dark);
}
.logo-text strong{
  display:block;
  font-size:24px;
  line-height:1;
}
.logo-text span{
  display:block;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
  margin-top:4px;
}
.nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:15px;
  font-weight:700;
}
.nav a{color:#30343b}
.nav a:hover{color:var(--red)}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0;
  border-radius:999px;
  padding:14px 22px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
  font-size:15px;
}
.btn-primary{
  background:var(--red);
  color:#fff;
  box-shadow:0 12px 28px rgba(180,0,9,.25);
}
.btn-primary:hover{
  background:var(--red-dark);
  transform:translateY(-2px);
}
.btn-light{
  background:#fff;
  color:var(--red);
  border:1px solid var(--border);
}
.btn-dark{
  background:var(--dark);
  color:#fff;
}
.menu-btn{
  display:none;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  font-size:22px;
}
.hero{
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle at 85% 15%,rgba(180,0,9,.12),transparent 34%),linear-gradient(180deg,#fff 0%,#f8f8f9 100%);
  padding:72px 0 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:48px;
  align-items:center;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  color:var(--red);
  border:1px solid rgba(180,0,9,.16);
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.7px;
}
.hero h1{
  font-size:clamp(38px,5vw,68px);
  line-height:.98;
  letter-spacing:-2px;
  color:var(--dark);
  margin:22px 0 20px;
}
.hero p{
  font-size:18px;
  color:var(--muted);
  margin:0 0 28px;
  max-width:620px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:28px;
}
.proof{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.proof-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px 16px;
  min-width:150px;
  box-shadow:0 10px 28px rgba(20,20,20,.05);
}
.proof-item strong{
  display:block;
  color:var(--dark);
  font-size:20px;
}
.proof-item span{
  display:block;
  color:var(--muted);
  font-size:13px;
}
.hero-card{
  background:var(--dark);
  color:#fff;
  border-radius:38px;
  padding:28px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  right:-70px;
  top:-70px;
  background:rgba(180,0,9,.55);
}
.hero-card-inner{
  position:relative;
  z-index:1;
}
.document-card{
  background:#fff;
  color:var(--text);
  border-radius:26px;
  padding:24px;
  margin-bottom:20px;
}
.document-card .line{
  height:10px;
  background:#eceff3;
  border-radius:99px;
  margin:12px 0;
}
.document-card .line.short{
  width:58%;
}
.document-card .stamp{
  display:inline-flex;
  background:rgba(180,0,9,.08);
  color:var(--red);
  padding:9px 12px;
  border-radius:12px;
  font-weight:900;
  font-size:13px;
}
.card-points{
  display:grid;
  gap:12px;
}
.card-point{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  padding:14px;
}
.section{
  padding:76px 0;
}
.section.soft{
  background:var(--soft);
}
.section-title{
  max-width:760px;
  margin:0 auto 36px;
  text-align:center;
}
.section-title span{
  color:var(--red);
  font-weight:900;
  letter-spacing:.7px;
  font-size:13px;
}
.section-title h2{
  margin:10px 0 12px;
  color:var(--dark);
  font-size:clamp(30px,4vw,46px);
  line-height:1.08;
  letter-spacing:-1px;
}
.section-title p{
  color:var(--muted);
  margin:0;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card,
.feature-card,
.step-card,
.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 12px 30px rgba(20,20,20,.05);
}
.icon{
  width:48px;
  height:48px;
  border-radius:16px;
  background:rgba(180,0,9,.08);
  color:var(--red);
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:16px;
}
.service-card h3,
.feature-card h3,
.step-card h3{
  margin:0 0 10px;
  color:var(--dark);
  font-size:20px;
}
.service-card p,
.feature-card p,
.step-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.steps{
  counter-reset:step;
}
.step-card{
  position:relative;
}
.step-card:before{
  counter-increment:step;
  content:"0" counter(step);
  position:absolute;
  right:22px;
  top:18px;
  font-size:32px;
  font-weight:900;
  color:rgba(180,0,9,.12);
}
.form-wrap{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:28px;
  align-items:stretch;
}
.form-info{
  background:var(--dark);
  color:#fff;
  border-radius:34px;
  padding:34px;
}
.form-info h2{
  margin:0 0 14px;
  font-size:36px;
  line-height:1.08;
}
.form-info p{
  color:rgba(255,255,255,.74);
}
.form-info ul{
  margin:24px 0 0;
  padding:0;
  list-style:none;
}
.form-info li{
  margin:14px 0;
  color:rgba(255,255,255,.88);
}
.lead-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:34px;
  padding:28px;
  box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.field.full{
  grid-column:1 / -1;
}
.field label{
  font-size:13px;
  font-weight:900;
  color:var(--dark);
}
.field input,
.field select,
.field textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 15px;
  font-size:15px;
  outline:none;
  font-family:inherit;
  background:#fbfbfc;
}
.field textarea{
  min-height:110px;
  resize:vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:var(--red);
  background:#fff;
}
.note{
  font-size:13px;
  color:var(--muted);
  margin:12px 0 0;
}
.faq-list{
  max-width:860px;
  margin:0 auto;
  display:grid;
  gap:14px;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  border:0;
  background:transparent;
  font-weight:900;
  color:var(--dark);
  font-size:17px;
  cursor:pointer;
  text-align:left;
  padding:0;
}
.faq-answer{
  display:none;
  color:var(--muted);
  padding-top:14px;
}
.faq-item.active .faq-answer{
  display:block;
}
.footer{
  background:#171717;
  color:#fff;
  padding:48px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .7fr;
  gap:32px;
  margin-bottom:28px;
}
.footer p,
.footer a{
  color:rgba(255,255,255,.72);
}
.footer h2{
  margin:0 0 14px;
}
.footer-links{
  display:grid;
  gap:10px;
}
.copyright{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:22px;
  color:rgba(255,255,255,.56);
  font-size:14px;
}
.float-actions{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:30;
  display:grid;
  gap:10px;
}
.float-actions a{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  font-size:22px;
}
.float-form{
  background:var(--red);
}
.float-wa{
  background:#25d366;
}
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:.6s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
@media(max-width:980px){
  .nav,.header-actions{display:none}
  .menu-btn{display:block}
  .nav.open{
    display:grid;
    position:absolute;
    top:82px;
    left:18px;
    right:18px;
    background:#fff;
    padding:20px;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:var(--shadow);
  }
  .hero{padding-top:46px}
  .hero-grid,.form-wrap{grid-template-columns:1fr}
  .grid-3,.grid-4{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .container{width:min(100% - 28px,1180px)}
  .topbar .container{justify-content:center;text-align:center}
  .topbar span:last-child{display:none}
  .header-inner{min-height:74px}
  .logo-text strong{font-size:21px}
  .nav.open{top:76px}
  .hero h1{font-size:38px;letter-spacing:-1px}
  .hero p{font-size:16px}
  .hero-actions .btn{width:100%}
  .proof{display:grid;grid-template-columns:1fr 1fr}
  .grid-3,.grid-4,.form-grid{grid-template-columns:1fr}
  .field.full{grid-column:auto}
  .section{padding:54px 0}
  .form-info h2{font-size:30px}
  .float-actions{right:12px;bottom:12px}
  .float-actions a{width:50px;height:50px}
}
.logo-mark{
  width:46px;
  height:46px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--dark),#3a3a3a);
  position:relative;
  overflow:hidden;
  flex:none;
}
.logo-mark:before{
  content:"";
  position:absolute;
  right:-8px;
  top:-8px;
  width:28px;
  height:28px;
  background:var(--red);
  transform:rotate(45deg);
}
.form-success{
  display:none;
  background:rgba(180,0,9,.08);
  color:var(--red);
  border:1px solid rgba(180,0,9,.18);
  padding:14px 16px;
  border-radius:16px;
  font-weight:800;
  margin-bottom:16px;
}
.lead-form .btn{
  width:100%;
  margin-top:14px;
}
.site-logo{
  display:block;
  width:220px;
  max-width:100%;
  height:auto;
}
.footer .site-logo{
  background:#fff;
  padding:10px 14px;
  border-radius:14px;
  width:210px;
}
@media(max-width:640px){
  .site-logo{width:180px}
}

.process-band{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  margin-top:34px;
  background:var(--dark);
  color:#fff;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 24px 55px rgba(20,20,20,.14);
}
.process-item{
  min-height:250px;
  padding:34px 24px;
  border-right:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}
.process-item:last-child{
  border-right:0;
}
.process-item span{
  font-size:44px;
  font-weight:900;
  color:rgba(255,255,255,.28);
  line-height:1;
  margin-bottom:18px;
}
.process-item h3{
  margin:0 0 12px;
  font-size:19px;
  color:#fff;
}
.process-item p{
  margin:0;
  color:rgba(255,255,255,.74);
  font-size:14px;
}
.process-featured{
  background:var(--red);
  transform:scale(1.08);
  border-radius:28px;
  border-right:0;
  box-shadow:0 22px 48px rgba(180,0,9,.28);
  z-index:2;
}
.process-featured span{
  color:rgba(255,255,255,.34);
}
.process-featured p{
  color:rgba(255,255,255,.9);
}
@media(max-width:980px){
  .process-band{
    grid-template-columns:1fr 1fr;
    gap:0;
  }
  .process-featured{
    transform:none;
    border-radius:0;
  }
  .process-item{
    min-height:210px;
  }
}
@media(max-width:640px){
  .process-band{
    grid-template-columns:1fr;
    border-radius:26px;
  }
  .process-item{
    min-height:auto;
    padding:28px 22px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
  .process-item:last-child{
    border-bottom:0;
  }
}

section[id]{
  scroll-margin-top:120px;
}
@media(max-width:640px){
  section[id]{
    scroll-margin-top:95px;
  }
}

/* Page polish: dropdown, content readability and CTA buttons */
.header .menu,
.header .sub-menu,
.nav .sub-menu,
.nav ul ul,
.menu-item-has-children .sub-menu{
  background:#fff !important;
  border:1px solid var(--border) !important;
  border-radius:18px !important;
  box-shadow:0 18px 44px rgba(15,23,42,.12) !important;
  padding:10px !important;
}

.header .menu a,
.header .sub-menu a,
.nav .sub-menu a,
.nav ul ul a,
.menu-item-has-children .sub-menu a{
  color:var(--dark) !important;
  font-weight:800 !important;
  font-size:14px !important;
  opacity:1 !important;
  text-decoration:none !important;
  display:block !important;
  padding:10px 14px !important;
  border-radius:12px !important;
}

.header .menu a:hover,
.header .sub-menu a:hover,
.nav .sub-menu a:hover,
.nav ul ul a:hover,
.menu-item-has-children .sub-menu a:hover{
  background:rgba(180,0,9,.08) !important;
  color:var(--red) !important;
}

.service-card,
.entry-content,
.page-content{
  color:var(--muted);
}

.service-card h2,
.entry-content h2,
.page-content h2{
  color:var(--dark);
  font-size:clamp(30px,3vw,46px);
  line-height:1.12;
  letter-spacing:-1px;
  margin-bottom:28px;
}

.service-card h3,
.entry-content h3,
.page-content h3{
  color:var(--dark);
  font-size:22px;
  margin:28px 0 12px;
}

.service-card p,
.service-card li,
.entry-content p,
.entry-content li,
.page-content p,
.page-content li{
  font-size:16px;
  line-height:1.75;
  color:var(--muted);
}

.service-card ul,
.entry-content ul,
.page-content ul{
  padding-left:24px;
  margin:12px 0 20px;
}

.service-card .btn,
.entry-content .btn,
.page-content .btn,
.service-card a.btn,
.entry-content a.btn,
.page-content a.btn{
  color:#fff !important;
  background:var(--red) !important;
  border:0 !important;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:14px 22px !important;
  border-radius:999px !important;
  font-weight:900 !important;
  text-decoration:none !important;
  box-shadow:0 14px 30px rgba(180,0,9,.22);
}

.service-card .btn:hover,
.entry-content .btn:hover,
.page-content .btn:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 36px rgba(180,0,9,.28);
}

@media(max-width:640px){
  .service-card,
  .entry-content,
  .page-content{
    padding:26px 20px !important;
  }

  .service-card h2,
  .entry-content h2,
  .page-content h2{
    font-size:30px;
  }

  .service-card p,
  .service-card li,
  .entry-content p,
  .entry-content li,
  .page-content p,
  .page-content li{
    font-size:15px;
  }
}

.topbar a,
.topbar a:visited,
.topbar a:hover{
  color:#fff !important;
  font-weight:900 !important;
  text-decoration:none !important;
}

.header-actions .btn,
.header-actions .btn-primary,
.header-actions a,
.header-actions a:visited,
.header-actions a:hover{
  color:#fff !important;
  text-decoration:none !important;
}

.header .btn-primary,
.header .btn-primary:visited,
.header .btn-primary:hover{
  color:#fff !important;
}

.service-card,
a.service-card,
a.service-card:visited{
  text-decoration:none !important;
  color:inherit !important;
  display:block;
}

a.service-card h3,
a.service-card p{
  color:inherit;
}

a.service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(180,0,9,.22);
  box-shadow:0 22px 50px rgba(15,23,42,.10);
}

/* Analizet sticky social buttons */
.az-sticky-social{
  position:fixed;
  right:26px;
  bottom:26px;
  z-index:99999;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

.az-social-btn{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  color:#fff !important;
  text-decoration:none !important;
  font-size:18px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(15,23,42,.22);
  transition:transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.az-social-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 42px rgba(15,23,42,.28);
}

.az-whatsapp{
  background:#25d366;
}

.az-phone{
  background:#0b74d1;
}

.az-toggle{
  background:#4b5563;
}

.az-sticky-social.is-collapsed .az-action{
  opacity:0;
  pointer-events:none;
  transform:translateY(12px) scale(.85);
}

@media(max-width:640px){
  .az-sticky-social{
    right:18px;
    bottom:18px;
  }

  .az-social-btn{
    width:48px;
    height:48px;
    font-size:16px;
  }
}

.az-instagram{
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.az-sticky-social .az-social-btn span{
  color:#fff !important;
}

/* Analizet Font Awesome sticky icons */
.sticky-icons{
  position:fixed !important;
  right:20px !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  z-index:99999 !important;
  display:flex !important;
  flex-direction:column-reverse !important;
  align-items:center !important;
  gap:15px !important;
}

.social-button,
.toggle-button{
  width:60px !important;
  height:60px !important;
  border-radius:50% !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  box-shadow:0 5px 15px rgba(0,0,0,.30) !important;
  cursor:pointer !important;
  transition:all .3s ease !important;
  text-decoration:none !important;
  border:none !important;
  margin:0 !important;
  padding:0 !important;
}

.social-button a{
  display:flex !important;
  width:100% !important;
  height:100% !important;
  justify-content:center !important;
  align-items:center !important;
  text-decoration:none !important;
  border-radius:50% !important;
}

.social-button i,
.toggle-button i{
  font-size:28px !important;
  color:#fff !important;
  line-height:1 !important;
  margin:0 !important;
  padding:0 !important;
}

.whatsapp{
  background-color:#25D366 !important;
}

.telefon{
  background-color:#007BFF !important;
}

.instagram{
  background:#f09433 !important;
  background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

.toggle-button{
  background-color:#222 !important;
  margin-top:5px !important;
  width:50px !important;
  height:50px !important;
}

.toggle-button i{
  font-size:22px !important;
}

.social-button:hover{
  transform:scale(1.1) !important;
}

.sticky-icons.collapsed .social-button{
  opacity:0 !important;
  visibility:hidden !important;
  transform:translateX(50px) scale(.5) !important;
  height:0 !important;
  width:0 !important;
  margin:0 !important;
  padding:0 !important;
}

.az-sticky-social{
  display:none !important;
}

.float-wa,
.float-phone{
  display:none !important;
}

@media only screen and (max-width:768px){
  .sticky-icons{
    right:10px !important;
    gap:10px !important;
  }

  .social-button,
  .toggle-button{
    width:45px !important;
    height:45px !important;
  }

  .social-button i,
  .toggle-button i{
    font-size:20px !important;
  }

  .sticky-icons.collapsed .social-button{
    transform:translateX(30px) scale(.5) !important;
  }
}

/* Analizet page visuals */
.az-page-visual{
  margin:0 0 28px 0;
  border-radius:24px;
  overflow:hidden;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.az-page-visual img{
  display:block;
  width:100%;
  height:auto;
}

.az-image-band{
  background:#fff;
}

.az-image-row{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:34px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  padding:34px;
  box-shadow:0 22px 55px rgba(15,23,42,.08);
}

.az-image-row span{
  display:block;
  color:#c90012;
  font-weight:900;
  font-size:13px;
  letter-spacing:.08em;
  margin-bottom:10px;
}

.az-image-row h2{
  margin:0 0 14px 0;
  font-size:34px;
  line-height:1.12;
  color:#202124;
}

.az-image-row p{
  margin:0;
  color:#667085;
  line-height:1.7;
}

.az-image-row img{
  display:block;
  width:100%;
  height:auto;
  border-radius:24px;
}

@media(max-width:768px){
  .az-page-visual{
    border-radius:18px;
    margin-bottom:22px;
  }

  .az-image-row{
    grid-template-columns:1fr;
    gap:20px;
    padding:22px;
    border-radius:24px;
  }

  .az-image-row h2{
    font-size:26px;
  }
}

/* AZ MOBILE FIX 1 */
@media only screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
  }

  .container {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }

  .section {
    padding: 56px 0 !important;
  }

  .page-content {
    padding: 24px 18px !important;
    border-radius: 22px !important;
  }

  .page-content h2 {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  .az-page-visual img,
  .az-image-row img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 18px !important;
  }
}

/* AZ MOBILE FIX 2 */
@media only screen and (max-width: 768px) {
  .topbar .container {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .topbar span,
  .topbar a {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .header-inner {
    min-height: 64px !important;
    padding: 10px 0 !important;
  }

  .site-logo {
    max-width: 165px !important;
    height: auto !important;
  }

  .menu-btn {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
  }
}

/* AZ MOBILE FIX 3 */
@media only screen and (max-width: 768px) {
  .hero {
    padding: 48px 0 44px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .hero h1 {
    font-size: 38px !important;
    line-height: 1.05 !important;
    letter-spacing: -1.5px !important;
  }

  .hero p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-actions .btn,
  .btn {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
  }
}

/* AZ MOBILE FIX 4 */
@media only screen and (max-width: 768px) {
  .grid-3,
  .grid-4,
  .form-grid,
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .service-card,
  .why-card,
  .form-card,
  .form-info {
    padding: 26px 22px !important;
    border-radius: 24px !important;
  }

  .service-card h3,
  .why-card h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  .service-card p,
  .why-card p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  input,
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* AZ MOBILE FIX 5 - Topbar cleanup */
@media only screen and (max-width: 768px) {
  .topbar {
    min-height: 38px !important;
  }

  .topbar .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 7px 12px !important;
  }

  .topbar span {
    display: none !important;
  }

  .topbar a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: #fff !important;
  }
}

/* AZ MOBILE FIX 6 - Floating icons cleanup */
@media only screen and (max-width: 768px) {
  .sticky-icons {
    right: 8px !important;
    top: auto !important;
    bottom: 82px !important;
    transform: none !important;
    gap: 8px !important;
  }

  .social-button,
  .toggle-button {
    width: 42px !important;
    height: 42px !important;
  }

  .social-button i,
  .toggle-button i {
    font-size: 18px !important;
  }

  .sticky-icons.collapsed .social-button {
    transform: translateX(28px) scale(.5) !important;
  }
}

/* AZ MOBILE FIX 7 - Mobile menu polish */
@media only screen and (max-width: 768px) {
  .nav {
    width: 100% !important;
    margin-top: 12px !important;
    padding: 16px !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 18px 45px rgba(15,23,42,.08) !important;
  }

  .nav a {
    display: block !important;
    padding: 12px 8px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
  }

  .menu-btn {
    background: #eef7f8 !important;
    color: #111827 !important;
    border: 1px solid rgba(15,23,42,.08) !important;
  }
}

/* AZ MOBILE FIX 8 - Sticky mobile header */
@media only screen and (max-width: 768px) {
  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9998 !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(15,23,42,.08) !important;
  }

  body.admin-bar .header {
    top: 0 !important;
  }

  .header-inner {
    min-height: 64px !important;
  }
}

/* AZ MOBILE FIX 9 - Topbar stays normal on mobile */
@media only screen and (max-width: 768px) {
  .topbar {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
  }
}

/* AZ MOBILE FIX 8 - Sticky mobile header */
@media only screen and (max-width: 768px) {
  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9998 !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(15,23,42,.08) !important;
  }

  body.admin-bar .header {
    top: 0 !important;
  }

  .header-inner {
    min-height: 64px !important;
  }
}

/* AZ MOBILE FIX 9 - Topbar stays normal on mobile */
@media only screen and (max-width: 768px) {
  .topbar {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
  }
}

/* AZ MOBILE HEADER FORCE FINAL */
@media only screen and (max-width: 768px) {
  .topbar {
    display: none !important;
  }

  body {
    padding-top: 74px !important;
    overflow-x: hidden !important;
  }

  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99990 !important;
    background: #fff !important;
    box-shadow: 0 10px 28px rgba(15,23,42,.10) !important;
  }

  .header-inner {
    min-height: 74px !important;
    padding: 10px 16px !important;
  }

  .site-logo {
    max-width: 168px !important;
    height: auto !important;
  }

  .menu-btn {
    margin-left: auto !important;
  }
}

/* AZ MOBILE SOCIAL FINAL */
@media only screen and (max-width: 768px) {
  .sticky-icons {
    right: 8px !important;
    top: auto !important;
    bottom: 92px !important;
    transform: none !important;
    gap: 8px !important;
    z-index: 99980 !important;
  }

  .social-button {
    width: 42px !important;
    height: 42px !important;
  }

  .toggle-button {
    width: 40px !important;
    height: 40px !important;
  }

  .social-button i {
    font-size: 19px !important;
  }

  .toggle-button i {
    font-size: 18px !important;
  }

  .sticky-icons.collapsed .social-button {
    transform: translateX(28px) scale(.5) !important;
  }
}

/* AZ FINAL FOOTER FIX */
.footer {
  background: #151515 !important;
}

.footer h2,
.footer .copyright,
.footer p {
  color: rgba(255,255,255,.88) !important;
}

.footer a {
  color: rgba(255,255,255,.82) !important;
  text-decoration: none !important;
  transition: color .2s ease, opacity .2s ease;
}

.footer a:hover,
.footer a:focus {
  color: #ffffff !important;
  opacity: 1 !important;
  text-decoration: underline !important;
}

.footer .footer-links a:hover {
  color: #ffffff !important;
}

.footer .footer-links a[href^="mailto:"],
.footer .footer-links a[href^="tel:"] {
  color: rgba(255,255,255,.9) !important;
}


/* AZ FINAL - Hero card content polish */
.document-card-live strong{
  display:block;
  margin:14px 0 10px;
  color:#1f2937;
  font-size:18px;
  line-height:1.2;
}

.doc-checks{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.doc-checks li{
  color:#475569;
  font-size:14px;
  line-height:1.35;
}

.doc-checks li:before{
  content:"✓";
  color:#c90012;
  font-weight:900;
  margin-right:7px;
}

/* AZ FINAL - Footer link hover fix */
.footer a,
.site-footer a {
    color: rgba(255,255,255,.86) !important;
    text-decoration: none !important;
}

.footer a:hover,
.site-footer a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
    opacity: 1 !important;
}

/* AZ FINAL - Footer contrast polish */
footer,
.footer,
.site-footer {
    color: rgba(255,255,255,.88) !important;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer strong,
.footer h1,
.footer h2,
.footer h3,
.footer h2,
.footer strong,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h2,
.site-footer strong {
    color: #ffffff !important;
    opacity: 1 !important;
}

footer a,
.footer a,
.site-footer a {
    color: rgba(255,255,255,.88) !important;
    text-decoration: none !important;
}

footer a:hover,
.footer a:hover,
.site-footer a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
    opacity: 1 !important;
}

/* AZ FINAL - Mobile floating icons polish */
@media only screen and (max-width: 768px) {
  .float-actions,
  #stickyIcons,
  .sticky-icons {
    position: fixed !important;
    right: 10px !important;
    bottom: 76px !important;
    top: auto !important;
    transform: none !important;
    gap: 8px !important;
    z-index: 9999 !important;
  }

  .float-actions a,
  #stickyIcons a,
  .sticky-icons a,
  .float-actions button,
  #stickyIcons button,
  .sticky-icons button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
  }
}

/* AZ MOBILE MENU FINAL */
@media only screen and (max-width: 768px) {
  .nav {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
  }

  .nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/* AZ MOBILE MENU REAL FINAL */
@media only screen and (max-width: 768px) {
  .nav {
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: translateY(-10px) !important;
    transition: all .24s ease !important;
  }

  .nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    max-height: 360px !important;
    transform: translateY(0) !important;
  }
}

/* AZ MOBILE MENU WIDTH FIX */
@media only screen and (max-width: 768px) {
  .nav {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }
}
