/* ============================================================
   AKNOVA TECH — Premium Digital Agency Design System
   ============================================================ */

:root{
  /* ---- Brand colors (from brief) ---- */
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #60A5FA;
  --navy: #0F172A;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-soft-blue: #EFF6FF;
  --border: #E2E8F0;
  --success: #10B981;

  /* ---- Derived neutrals ---- */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;

  /* ---- Gradients (signature "Growth Path" motif) ---- */
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 55%, #3B82F6 100%);
  --gradient-soft: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
  --gradient-mesh: radial-gradient(circle at 15% 20%, rgba(37,99,235,0.10) 0%, transparent 45%),
                    radial-gradient(circle at 85% 0%, rgba(16,185,129,0.08) 0%, transparent 40%),
                    radial-gradient(circle at 50% 100%, rgba(37,99,235,0.06) 0%, transparent 50%);

  /* ---- Shadows ---- */
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.04);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.07);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.10);
  --shadow-xl: 0 30px 70px rgba(15,23,42,0.14);
  --shadow-primary: 0 16px 40px rgba(37,99,235,0.25);

  /* ---- Radius ---- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* ---- Type scale ---- */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 300ms;
  --dur-mid: 450ms;
  --dur-slow: 700ms;
}

/* ============================================================
   Base
   ============================================================ */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
p{ margin: 0; }
a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; display:block; }
button{ font-family: var(--font-body); }
ul{ margin:0; padding:0; list-style:none; }

::selection{ background: var(--primary-light); color:#fff; }

:focus-visible{
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

.container-xl{
  width:100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section{ position: relative; }

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Type utility classes
   ============================================================ */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-soft-blue);
  border: 1px solid #DBEAFE;
  padding: 8px 18px;
  border-radius: var(--r-pill);
}
.eyebrow .dot{
  width:6px; height:6px; border-radius:50%; background: var(--success);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
}

.section-tag{
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display:block;
}

.h1-display{
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.h2-section{
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.h3-card{
  font-size: 1.25rem;
  font-weight: 600;
}
.lead-text{
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.section-head{
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.text-gradient{
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--gradient-primary);
  color:#fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(37,99,235,0.32);
}
.btn-outline{
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover{
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-ghost{
  background: transparent;
  color: var(--primary);
  padding: 12px 4px;
}
.btn-ghost i{ transition: transform var(--dur-fast) var(--ease); }
.btn-ghost:hover i{ transform: translateX(4px); }
.btn-sm{ padding: 11px 22px; font-size: 14px; }
.btn-block{ width:100%; }
.btn-white{
  background:#fff; color: var(--primary);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}
.btn-white:hover{ transform: translateY(-3px); }

/* ============================================================
   Header / Navbar
   ============================================================ */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--dur-mid) var(--ease);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  padding: 12px 0;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(15,23,42,0.06);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
}
.brand .mark{
  width:38px; height:38px;
  border-radius: 11px;
  background: var(--gradient-primary);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:17px; font-weight:700;
  box-shadow: var(--shadow-primary);
}
.brand .mark svg{ width:20px; height:20px; }
.brand span.sub{ color: var(--primary); }

.nav-menu{
  display:flex;
  align-items:center;
  gap: 36px;
}
.nav-menu a{
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  position:relative;
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav-menu a::after{
  content:'';
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width var(--dur-fast) var(--ease);
}
.nav-menu a:hover, .nav-menu a.active{ color: var(--navy); }
.nav-menu a:hover::after, .nav-menu a.active::after{ width:100%; }

.nav-actions{ display:flex; align-items:center; gap:12px; }

.nav-toggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background:#fff;
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
  cursor:pointer;
}
.nav-toggle span{ width: 18px; height:2px; background: var(--navy); border-radius:2px; transition: all var(--dur-fast) var(--ease); }
.nav-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px){
  .nav-menu{
    position:fixed; top:0; right:0; bottom:0;
    width: min(78vw, 340px);
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap: 8px;
    padding: 110px 32px 40px;
    box-shadow: -20px 0 60px rgba(15,23,42,0.18);
    transform: translateX(100%);
    transition: transform var(--dur-mid) var(--ease);
  }
  .nav-menu.open{transform: translateX(0);height: 1000px;}
  .nav-menu a{ font-size: 16px; width:100%; padding: 12px 0; border-bottom: 1px solid var(--bg-soft); }
  .nav-actions .btn-outline{display:none;}
  .nav-toggle{display:flex;}
  .nav-actions .btn-primary{padding: 11px 18px;font-size:13.5px;display: none;}
}
.nav-backdrop{
  position:fixed; inset:0; background: rgba(15,23,42,0.4);
  opacity:0; visibility:hidden; transition: opacity var(--dur-mid) var(--ease);
  z-index: 999;
}
.nav-backdrop.show{ opacity:1; visibility:visible; }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  padding: 178px 0 110px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background: var(--gradient-mesh);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap: 30px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-trust .stat{ min-width: 110px; }
.hero-trust .num{
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  display:flex; align-items:baseline; gap:2px;
}
.hero-trust .num .plus{ color: var(--primary); font-size:18px; }
.hero-trust .label{ font-size: 13.5px; color: var(--text-muted); margin-top:2px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 36px; }

.hero-visual{ position:relative; height: 560px; }
.hero-visual .floating-card{
  position:absolute;
  background:#fff;
  border-radius: var(--r-lg);
  border:1px solid var(--border);
  box-shadow: var(--shadow-xl);
  padding: 18px;
  animation: floatCard 6s ease-in-out infinite;
}
.card-main{
  width: 320px; top: 40px; left: 30px;
  padding: 22px; z-index:3;
  animation-delay: 0s;
}
.card-analytics{
  width: 230px; bottom: 30px; left: 0; z-index:2;
  animation-delay: 1.2s;
}
.card-crm{
  width: 230px; top: 0; right: 0; z-index:2;
  animation-delay: 0.6s;
}
.card-revenue{
  width: 220px; bottom: 70px; right: -10px; z-index:4;
  animation-delay: 1.8s;
}
@keyframes floatCard{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
.fc-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.fc-title{ font-family: var(--font-head); font-size: 13px; font-weight:600; color: var(--navy); }
.fc-icon{
  width:32px;height:32px;border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
}
.fc-icon.blue{ background: var(--bg-soft-blue); color: var(--primary); }
.fc-icon.green{ background: #ECFDF5; color: var(--success); }
.fc-big-num{ font-family: var(--font-head); font-size: 28px; font-weight:700; color: var(--navy); }
.fc-sub{ font-size:12.5px; color: var(--success); display:flex; align-items:center; gap:4px; margin-top:4px; }
.fc-chart{ height: 70px; margin-top: 14px; }
.fc-bars{ display:flex; align-items:flex-end; gap:6px; height:60px; margin-top:14px; }
.fc-bars span{ flex:1; background: var(--bg-soft-blue); border-radius:5px 5px 0 0; }
.fc-bars span.hi{ background: var(--gradient-primary); }
.fc-rows{ display:flex; flex-direction:column; gap:10px; margin-top:8px; }
.fc-row{ display:flex; align-items:center; gap:10px; }
.fc-avatar{ width:26px;height:26px;border-radius:50%; background: var(--bg-soft-blue); color:var(--primary); font-size:10px; font-weight:700; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); }
.fc-line{ flex:1; height:6px; background: var(--bg-soft); border-radius:4px; overflow:hidden; }
.fc-line span{ display:block; height:100%; background: var(--gradient-primary); border-radius:4px; }
.fc-pill{ font-size:11px; font-weight:600; padding:3px 9px; border-radius:6px; background:#ECFDF5; color:var(--success); }

.hero-blob{
  position:absolute; width: 480px; height:480px;
  background: radial-gradient(circle, rgba(37,99,235,0.14), transparent 70%);
  border-radius:50%;
  top: -100px; right: -140px;
  z-index:1;
}

@media (max-width: 991px){
  .hero{ padding: 150px 0 70px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 70px; }
  .hero-visual{ height: 440px; max-width: 480px; margin: 0 auto; }
  .card-main{ width: 78%; left: 0; }
  .card-analytics{ width: 56%; }
  .card-crm{ width: 56%; }
  .card-revenue{ width: 50%; }
}
@media (max-width: 575px){
  .hero-visual{height: 380px;display: none;}
  .hero-trust{gap:20px;margin-top: 20px !important;padding-top: 20px !important;}
  .hero-trust .stat {flex:1;}
  .container-xl {padding: 0 18px;}
}

/* ============================================================
   Trust / Logo strip
   ============================================================ */
.logo-strip{padding: 40px 0;border-bottom: 1px solid var(--border);}
.logo-strip .strip-label{
  text-align:center; font-size:14px; color: var(--text-muted);
  letter-spacing: 0.04em; margin-bottom: 36px; font-family: var(--font-head); font-weight:500;
}
.logo-row{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap: wrap; gap: 28px;
}
.logo-chip{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-muted);
  opacity: 0.65;
  filter: grayscale(1);
  transition: all var(--dur-fast) var(--ease);
  display:flex; align-items:center; gap:8px;
}
.logo-chip i{ font-size: 20px; }
.logo-chip:hover{ opacity:1; filter:none; color: var(--primary); transform: translateY(-2px); }

/* ============================================================
   Generic section spacing
   ============================================================ */
.section-pad{ padding: 40px 0; }
.section-pad-sm{ padding: 40px 0; }
.bg-soft{ background: var(--bg-soft); }
.bg-soft-blue{ background: var(--bg-soft-blue); }

/* ============================================================
   Cards: About
   ============================================================ */
.about-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  height:100%;
  transition: all var(--dur-mid) var(--ease);
  position:relative;
  overflow:hidden;
}
.about-card::before{
  content:''; position:absolute; inset:0;
  background: var(--gradient-primary);
  opacity:0; transition: opacity var(--dur-mid) var(--ease);
  z-index:0;
}
.about-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.about-card:hover::before{ opacity:1; }
.about-card-inner{ position:relative; z-index:1; }
.about-card:hover .h3-card, .about-card:hover p, .about-card:hover .icon-tile{ color:#fff; }
.about-card:hover .icon-tile{ background: rgba(255,255,255,0.18); }

.icon-tile{
  width: 56px; height:56px;
  border-radius: var(--r-sm);
  background: var(--bg-soft-blue);
  color: var(--primary);
  display:flex; align-items:center; justify-content:center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: all var(--dur-mid) var(--ease);
}

/* ============================================================
   Problem / Solution cards
   ============================================================ */
.problem-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  height:100%;
  transition: all var(--dur-mid) var(--ease);
}
.problem-card:hover{ border-color: #FCA5A5; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.problem-card .icon-tile{ background:#FEF2F2; color:#EF4444; }

.flow-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.flow-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  position:relative;
}
.flow-card .from{
  font-size: 13px; color:#EF4444; font-weight:600; font-family:var(--font-head);
  display:flex; align-items:center; gap:6px; margin-bottom:10px;
}
.flow-card .to{
  font-size: 13px; color: var(--success); font-weight:600; font-family:var(--font-head);
  display:flex; align-items:center; gap:6px; margin-top:16px; padding-top:16px; border-top:1px dashed var(--border);
}
.flow-arrow{
  position:absolute; top:50%; right:-34px; transform: translateY(-50%);
  width:30px; height:30px; border-radius:50%;
  background: var(--gradient-primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; z-index:2;
  box-shadow: var(--shadow-primary);
}
@media (max-width: 991px){
  .flow-grid{ grid-template-columns: 1fr; gap: 44px; }
  .flow-arrow{ top:auto; bottom:-37px; right:50%; transform: translateX(50%) rotate(90deg); }
}

/* ============================================================
   Services cards
   ============================================================ */
.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  height:100%;
  transition: all var(--dur-mid) var(--ease);
  position:relative;
}
.service-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .icon-tile{ margin-bottom: 24px; }
.service-card:hover .icon-tile{ background: var(--gradient-primary); color:#fff; }
.service-card .more-link{
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--font-head); font-size: 14px; font-weight:600;
  color: var(--primary); margin-top:18px;
}
.service-card .more-link i{ transition: transform var(--dur-fast) var(--ease); font-size:13px; }
.service-card:hover .more-link i{ transform: translateX(4px); }

/* ============================================================
   Why choose us
   ============================================================ */
.why-card{
  display:flex; gap:18px; align-items:flex-start;
  background:#fff; border:1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; height:100%;
  transition: all var(--dur-mid) var(--ease);
}
.why-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--primary-light); }
.why-card .icon-tile{ margin-bottom:0; flex-shrink:0; width:50px; height:50px; font-size:20px; }

/* ============================================================
   Process Timeline
   ============================================================ */
.process-track{
  position:relative;
  display:grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
}
.process-track::before{
  content:'';
  position:absolute; top:28px; left:0; right:0; height:2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
  z-index:0;
}
.process-step{ position:relative; z-index:1; text-align:center; }
.process-step .num{
  width: 56px; height:56px; margin: 0 auto 18px;
  border-radius:50%;
  background:#fff; border: 2px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; color: var(--text-muted);
  transition: all var(--dur-mid) var(--ease);
}
.process-step:hover .num{
  background: var(--gradient-primary); color:#fff; border-color:transparent;
  box-shadow: var(--shadow-primary); transform: translateY(-4px);
}
.process-step .pname{ font-family: var(--font-head); font-weight:600; font-size:14.5px; color: var(--navy); }
@media (max-width: 991px){
  .process-track{ grid-template-columns: repeat(3,1fr); row-gap:50px; }
  .process-track::before{ display:none; }
}

/* ============================================================
   Portfolio
   ============================================================ */
.filter-row{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-bottom: 50px;
}
.filter-chip{
  font-family: var(--font-head); font-weight:600; font-size:14px;
  padding: 11px 24px; border-radius: var(--r-pill);
  border:1.5px solid var(--border); background:#fff; color: var(--text-secondary);
  cursor:pointer; transition: all var(--dur-fast) var(--ease);
}
.filter-chip:hover{ border-color: var(--primary); color: var(--primary); }
.filter-chip.active{ background: var(--gradient-primary); color:#fff; border-color:transparent; box-shadow: var(--shadow-primary); }

.portfolio-card{
  border-radius: var(--r-lg);
  overflow:hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all var(--dur-mid) var(--ease);
  height: 100%;
}
.portfolio-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.portfolio-thumb{
  position:relative;
  height: 230px;
  background: var(--gradient-soft);
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.portfolio-thumb .mock-browser{
  width:88%; background:#fff; border-radius:10px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); overflow:hidden;
  transform: translateY(6px);
  transition: transform var(--dur-mid) var(--ease);
}
.portfolio-card:hover .mock-browser{ transform: translateY(-4px); }
.mock-browser .bar{ height:22px; background: var(--bg-soft); display:flex; align-items:center; gap:5px; padding:0 10px; }
.mock-browser .bar span{ width:7px;height:7px;border-radius:50%; background: var(--border); }
.mock-browser .body{ height: 110px; background: linear-gradient(135deg,#EFF6FF,#F8FAFC); padding:14px; }
.mock-browser .body .line{ height:8px; border-radius:4px; background:#DBEAFE; margin-bottom:8px; }
.mock-browser .body .line.short{ width:50%; }

.portfolio-cat{
  position:absolute; top:16px; left:16px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  font-family: var(--font-head); font-size:12px; font-weight:600; color: var(--primary);
  padding: 6px 14px; border-radius: var(--r-pill);
}
.portfolio-body{ padding: 26px; }
.portfolio-results{ display:flex; gap:18px; margin: 16px 0 18px; }
.portfolio-results .res{ font-family: var(--font-head); }
.portfolio-results .res b{ display:block; color: var(--success); font-size:18px; }
.portfolio-results .res span{ font-size:12px; color: var(--text-muted); }
.portfolio-links{ display:flex; gap:12px; margin-top: 6px; }

/* ============================================================
   Case Studies (Before/After)
   ============================================================ */
.case-card{
  background:#fff; border:1px solid var(--border); border-radius: var(--r-xl);
  padding: 38px; transition: all var(--dur-mid) var(--ease);
}
.case-card:hover{ box-shadow: var(--shadow-lg); }
.case-top{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; margin-bottom:26px; }
.case-meta{ display:flex; gap:10px; flex-wrap:wrap; }
.case-tag{ font-size:12.5px; font-family:var(--font-head); font-weight:600; padding:6px 14px; border-radius: var(--r-pill); background: var(--bg-soft-blue); color: var(--primary); }
.case-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 26px 0; }
.case-block{ background: var(--bg-soft); border-radius: var(--r-md); padding: 20px; }
.case-block .lbl{ font-family: var(--font-head); font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; color: var(--text-muted); margin-bottom:8px; display:block; }
.case-block p{ font-size:14.5px; color: var(--text-secondary); }
.case-stats{ display:flex; gap: 30px; flex-wrap:wrap; padding-top: 24px; border-top:1px dashed var(--border); }
.case-stats .stat b{ font-family: var(--font-head); font-size: 26px; color: var(--success); display:block; }
.case-stats .stat span{ font-size:13px; color: var(--text-muted); }
@media (max-width: 900px){ .case-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px){ .case-grid{ grid-template-columns: 1fr; }
  .case-card {
    padding: 25px;
  }                         
}

/* ============================================================
   Testimonials
   ============================================================ */
.testi-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  height:100%;
  display: flex;
  flex-direction: column;
}
.testi-stars{color:#F59E0B;font-size:14px;margin-bottom: 5px;letter-spacing:2px;}
.testi-quote{font-size:16px;color: var(--text-secondary);margin-bottom: 26px;min-height: 96px;flex: 1;}
.testi-person{ display:flex; align-items:center; gap:14px; }
.testi-avatar{
  width:50px;height:50px;border-radius:50%;
  background: var(--gradient-primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; font-size:16px;
  flex-shrink:0;
}
.testi-person .name{ font-family: var(--font-head); font-weight:600; color: var(--navy); font-size:15px; }
.testi-person .role{ font-size:13px; color: var(--text-muted); }

.video-testi{
  border-radius: var(--r-lg); overflow:hidden; position:relative;
  background: var(--navy); height: 100%; min-height: 320px;
  display:flex; align-items:center; justify-content:center;
}
.video-testi .scrim{ position:absolute; inset:0; background: linear-gradient(160deg, rgba(37,99,235,0.55), rgba(15,23,42,0.75)); }
.video-testi .play-btn{
  position:relative; z-index:2;
  width: 76px; height:76px; border-radius:50%;
  background: rgba(255,255,255,0.18); border:1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:24px; cursor:pointer;
  transition: all var(--dur-mid) var(--ease);
}
.video-testi:hover .play-btn{ background:#fff; color: var(--primary); transform: scale(1.08); }
.video-testi .vlabel{ position:absolute; bottom:24px; left:24px; z-index:2; color:#fff; }
.video-testi .vlabel .name{ font-family:var(--font-head); font-weight:600; }
.video-testi .vlabel .role{ font-size:13px; opacity:0.8; }

.swiper-pagination-bullet{ background: var(--border); opacity:1; width:9px; height:9px; }
.swiper-pagination-bullet-active{ background: var(--primary); width: 26px; border-radius:5px; }

/* ============================================================
   Industries
   ============================================================ */
.industry-card{
  background:#fff; border:1px solid var(--border); border-radius: var(--r-md);
  padding: 26px 16px; text-align:center;
  transition: all var(--dur-mid) var(--ease);
  height:100%;
}
.industry-card:hover{ background: var(--gradient-primary); border-color:transparent; transform: translateY(-6px); box-shadow: var(--shadow-primary); }
.industry-card .icon-tile{ margin: 0 auto 16px; background: var(--bg-soft-blue); }
.industry-card:hover .icon-tile{ background: rgba(255,255,255,0.2); color:#fff; }
.industry-card:hover span{ color:#fff; }
.industry-card span{ font-family: var(--font-head); font-weight:600; font-size:14.5px; color: var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item{
  background:#fff; border:1px solid var(--border); border-radius: var(--r-md);
  margin-bottom: 14px; overflow:hidden;
}
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 22px 26px; cursor:pointer;
  font-family: var(--font-head); font-weight:600; color: var(--navy); font-size:16px;
}
.faq-q .plus{
  width:32px;height:32px;border-radius:50%; background: var(--bg-soft-blue); color: var(--primary);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: all var(--dur-fast) var(--ease);
}
.faq-item.open .faq-q .plus{ background: var(--gradient-primary); color:#fff; transform: rotate(135deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height var(--dur-mid) var(--ease); }
.faq-a-inner{ padding: 0 26px 24px; color: var(--text-secondary); font-size:15px; }
.faq-item.open .faq-a{ max-height: 400px; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta{
  background: var(--gradient-primary);
  border-radius: var(--r-xl);
  padding: 70px 60px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.final-cta::before{
  content:'';
  position:absolute; width:380px; height:380px; border-radius:50%;
  background: rgba(255,255,255,0.08); top:-160px; left:-100px;
}
.final-cta::after{
  content:'';
  position:absolute; width:300px; height:300px; border-radius:50%;
  background: rgba(255,255,255,0.07); bottom:-140px; right:-80px;
}
.final-cta h2{ color:#fff; }
.final-cta p{ color: rgba(255,255,255,0.85); }
.final-cta .cta-actions{ position:relative; z-index:2; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:34px; }
@media (max-width: 575px){ .final-cta{ padding: 50px 26px; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{ background: var(--navy); color: rgba(255,255,255,0.65); padding: 80px 0 0; }
.site-footer h6{ color:#fff; font-family: var(--font-head); font-size:15px; font-weight:600; margin-bottom:22px; }
.site-footer ul li{ margin-bottom: 13px; }
.site-footer ul li a{ font-size: 14.5px; color: rgba(255,255,255,0.65); transition: color var(--dur-fast) var(--ease); }
.site-footer ul li a:hover{ color:#fff; }
.footer-brand p{ color: rgba(255,255,255,0.6); font-size:14.5px; margin: 18px 0 22px; max-width: 320px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px;height:38px;border-radius:10px;background: rgba(255,255,255,0.07);
  display:flex; align-items:center; justify-content:center; color:#fff;
  transition: all var(--dur-fast) var(--ease);
}
.footer-social a:hover{ background: var(--primary); transform: translateY(-3px); }
.footer-contact-item{ display:flex; gap:12px; margin-bottom:16px; font-size:14.5px; }
.footer-contact-item i{ color: var(--primary-light); margin-top:3px; }
.newsletter-form{ display:flex; gap:0; margin-top: 6px; }
.newsletter-form input{
  flex:1; background: rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill) 0 0 var(--r-pill); padding: 13px 20px; color:#fff; font-size:14px;
  border-right:none;
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,0.45); }
.newsletter-form button{
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  background: var(--gradient-primary); color:#fff; border:none; padding: 0 22px;
  cursor:pointer;
}
.footer-bottom{
  margin-top: 60px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.1);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:13.5px;
}
.footer-bottom a{ color: rgba(255,255,255,0.6); margin-left: 18px; }
.footer-bottom a:hover{ color:#fff; }

/* ============================================================
   Misc shared components (forms, breadcrumbs, page-hero)
   ============================================================ */
.page-hero{
  padding: 170px 0 90px;
  background: var(--gradient-soft);
  position:relative;
  overflow:hidden;
}
.page-hero::before{ content:''; position:absolute; inset:0; background: var(--gradient-mesh); }
.breadcrumb-row{ display:flex; align-items:center; gap:8px; font-size:14px; color: var(--text-muted); margin-bottom:20px; position:relative; z-index:2; }
.breadcrumb-row a{ color: var(--primary); font-weight:500; }

.form-floating-card{
  background:#fff; border:1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl); padding: 40px;
}
.form-control-custom{
  width:100%; border:1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 14px 18px; font-size:15px; color: var(--navy); font-family: var(--font-body);
  transition: all var(--dur-fast) var(--ease); background:#fff;
}
.form-control-custom:focus{ outline:none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.form-label-custom{ font-family: var(--font-head); font-weight:600; font-size:13.5px; color: var(--navy); margin-bottom:8px; display:block; }
.form-group-custom{ margin-bottom: 20px; }
textarea.form-control-custom{ resize: vertical; min-height: 110px; }

.trust-mini{ display:flex; flex-wrap:wrap; gap:22px; margin-top:26px; }
.trust-mini .ti{ display:flex; align-items:center; gap:8px; font-size:13.5px; color: var(--text-secondary); font-weight:500; }
.trust-mini .ti i{ color: var(--success); }

/* Back to top */
.back-to-top{
  position:fixed; bottom: 28px; right: 28px; z-index: 900;
  width:48px; height:48px; border-radius:50%;
  background: var(--gradient-primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-primary);
  opacity:0; visibility:hidden; transform: translateY(12px);
  transition: all var(--dur-fast) var(--ease);
  border:none; cursor:pointer;
}
.back-to-top.show{ opacity:1; visibility:visible; transform: translateY(0); }

/* Counter helper */
[data-counter]{ font-variant-numeric: tabular-nums; }

/* AOS-less manual reveal fallback */
.reveal-up{ opacity:0; transform: translateY(28px); transition: all 0.7s var(--ease); }
.reveal-up.in{ opacity:1; transform: translateY(0); }

@media (max-width: 768px){
  .section-pad{ padding: 50px 0; }
  .section-pad-sm{ padding: 50px 0; }
  .section-head{ margin-bottom: 38px; }
}

/* ================================================================
   PREMIUM UPGRADE LAYER
   Additive enhancements only — palette, fonts and structure unchanged.
   Rules below intentionally re-target existing classes (same selector
   specificity, later in source) to lift shadows, spacing, type and
   card quality without touching the markup of the base system.
   ================================================================ */

:root{
  --r-2xl: 40px;
  --shadow-card: 0 1px 2px rgba(15,23,42,0.04), 0 1.5px 6px rgba(15,23,42,0.04), 0 18px 40px rgba(15,23,42,0.07);
  --shadow-card-hover: 0 1px 2px rgba(15,23,42,0.04), 0 30px 60px rgba(15,23,42,0.14);
  --gradient-line: linear-gradient(90deg, #2563EB, #60A5FA, #2563EB);
}

/* ---- 1. Breathing room ---- */
.section-pad{padding: 40px 0;}
.section-pad-sm{padding: 40px 0;}
.section-head{ margin-bottom: 68px; }
.container-xl{ max-width: 1320px; }
.row.g-4{ --bs-gutter-y: 2rem; }
@media (max-width: 768px){
  .section-pad{padding: 30px 0;}
  .section-pad-sm{padding: 30px 0;}
  .section-head{ margin-bottom: 44px; }
}

/* ---- 2. Authoritative typography ---- */
.h1-display{ font-size: clamp(2.7rem, 5.1vw, 4.6rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
.h2-section{ font-size: clamp(2.1rem, 3.6vw, 3.1rem); font-weight: 700; letter-spacing: -0.02em; }
.h3-card{ font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }
.eyebrow{ font-weight: 700; }
.lead-text{ font-size: 1.2rem; line-height: 1.8; }

/* ---- 3. Premium card system (overrides for every existing card class) ---- */
.about-card, .problem-card, .service-card, .why-card, .portfolio-card,
.case-card, .testi-card, .industry-card, .flow-card{
  border-radius: var(--r-xl);
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.about-card::after, .problem-card::after, .service-card::after, .why-card::after,
.portfolio-card::after, .case-card::after, .testi-card::after, .flow-card::after{
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background: var(--gradient-line);
  opacity:0; transform: scaleX(0.4); transform-origin: left;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.about-card:hover::after, .problem-card:hover::after, .service-card:hover::after,
.why-card:hover::after, .portfolio-card:hover::after, .case-card:hover::after,
.testi-card:hover::after, .flow-card:hover::after{ opacity:1; transform: scaleX(1); }

.about-card:hover, .service-card:hover, .portfolio-card:hover, .testi-card:hover, .why-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}
.problem-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.case-card:hover{ box-shadow: var(--shadow-card-hover); }
.industry-card{ border-radius: var(--r-lg); }

/* gradient-border utility for hero-weight cards (founder, audit, etc.) */
.gradient-border{
  position:relative;
  background:#fff;
  border-radius: var(--r-xl);
  border: none;
  box-shadow: var(--shadow-card);
}
.gradient-border::before{
  content:'';
  position:absolute; inset:0; border-radius:inherit; padding:1.5px;
  background: linear-gradient(135deg, rgba(37,99,235,0.45), rgba(37,99,235,0) 55%, rgba(16,185,129,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

/* ---- 4. Hero: full-height premium SaaS presentation ---- */
.hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  padding: 150px 0 80px;
}
@media (max-width: 991px){ .hero{min-height: auto;padding: 150px 0 70px;padding: 150px 0 30px;} }

.fc-badge-satisfaction{
  position:absolute; top:-22px; right:18px; z-index:5;
  background:#fff; border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  padding: 10px 16px 10px 10px;
  display:flex; align-items:center; gap:10px;
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: 0.4s;
}
.fc-badge-satisfaction .ring{
  position:relative;
  width:36px; height:36px; border-radius:50%;
  background: conic-gradient(var(--success) 0% 98%, #E2E8F0 98% 100%);
  display:flex; align-items:center; justify-content:center;
}
.fc-badge-satisfaction .ring::after{
  content:''; width:28px; height:28px; border-radius:50%; background:#fff;
}
.fc-badge-satisfaction .ring i{ position:absolute; font-size:11px; color: var(--success); }
.fc-badge-satisfaction .txt b{ display:block; font-family: var(--font-head); font-size:14px; color: var(--navy); }
.fc-badge-satisfaction .txt span{ font-size:11px; color: var(--text-muted); }

.fc-pill.live::before{
  content:''; display:inline-block; width:6px; height:6px; border-radius:50%;
  background: var(--success); margin-right:5px;
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{ box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50%{ box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

.hero-trust{ padding-top: 40px; margin-top: 52px; }
.hero-trust .stat{ position:relative; }
.hero-trust .stat:not(:last-child)::after{
  content:''; position:absolute; right:-15px; top:4px; bottom:4px; width:1px; background: var(--border);
}
@media (max-width: 575px){ .hero-trust .stat::after{ display:none; } }

/* ---- 5. Results & Achievements band ---- */
.results-band{
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: 64px 50px;
  position: relative;
  overflow:hidden;
}
.results-band::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 10% 20%, rgba(37,99,235,0.35), transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(16,185,129,0.18), transparent 45%);
}
.result-stat{position:relative;z-index:2;text-align:center;padding: 0;}
.result-stat .icon-tile{ background: rgba(255,255,255,0.08); color:#60A5FA; margin: 0 auto 18px; }
.result-stat .big{ font-family: var(--font-head); font-size: clamp(2.2rem,3.4vw,2.8rem); font-weight:700; color:#fff; }
.result-stat .lbl{ font-size:14px; color: rgba(255,255,255,0.6); margin-top:6px; }
@media (max-width: 768px){ .results-band{padding: 30px 20px;border-radius: 25px;} }

/* ---- 6. Founder / Leadership ---- */
.founder-wrap{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items:center; }
.founder-frame{
  position:relative; width: 100%; max-width: 340px; aspect-ratio: 1/1.05; margin:0 auto;
  border-radius: var(--r-xl);
  background: var(--gradient-primary);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-card-hover);
}
.founder-frame .initials{
  font-family: var(--font-head); font-size: 86px; font-weight:700; color: rgba(255,255,255,0.92);
}
.founder-frame .ring-deco{
  position:absolute; inset:-14px; border-radius: inherit; border: 1.5px dashed rgba(37,99,235,0.35);
}
.founder-quote-mark{ font-family: var(--font-head); font-size:64px; color: var(--bg-soft-blue); line-height:0.5; display:block; margin-bottom:6px; }
.founder-credentials{ display:flex; gap:28px; margin-top:30px; flex-wrap:wrap; }
.founder-credentials .fc b{ font-family: var(--font-head); font-size:22px; color: var(--navy); display:block; }
.founder-credentials .fc span{ font-size:13px; color: var(--text-muted); }
.founder-sign{ font-family: var(--font-head); font-weight:700; font-size:19px; color: var(--navy); margin-top:26px; }
.founder-sign span{ display:block; font-family: var(--font-body); font-weight:400; font-size:13.5px; color: var(--text-muted); margin-top:2px; }
@media (max-width: 991px){ .founder-wrap{ grid-template-columns: 1fr; gap:40px; text-align:center; } .founder-credentials{justify-content:center;} }

/* ---- 7. Why Most Digital Projects Fail ---- */
.fail-card{ background:#fff; border:1px solid rgba(226,232,240,0.8); border-radius: var(--r-xl); padding: 28px 24px; height:100%; box-shadow: var(--shadow-card); transition: all 0.5s var(--ease); }
.fail-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.fail-card .icon-tile{ background:#FFF7ED; color:#F59E0B; }
.fail-banner{
  margin-top: 50px; border-radius: var(--r-xl); padding: 38px 44px;
  background: var(--gradient-soft); border: 1px solid var(--bg-soft-blue);
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.fail-banner p{ font-family:var(--font-head); font-weight:600; color: var(--navy); font-size:18px; max-width:560px; }

/* ---- 8. Technology stack ---- */
.tech-badge-row{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }
.tech-badge{
  display:flex; align-items:center; gap:10px;
  background:#fff; border:1px solid var(--border); border-radius: var(--r-pill);
  padding: 13px 22px 13px 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.tech-badge:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.tech-badge .ti-icon{ width:32px; height:32px; border-radius:9px; background: var(--bg-soft-blue); color: var(--primary); display:flex; align-items:center; justify-content:center; font-size:15px; }
.tech-badge span{ font-family: var(--font-head); font-weight:600; font-size:14px; color: var(--navy); }

/* ---- 9. Portfolio: major visual highlight ---- */
.portfolio-thumb{ height: 280px; }
.csr-row{ display:flex; flex-direction:column; gap:10px; margin: 16px 0 20px; padding: 16px 18px; background: var(--bg-soft); border-radius: var(--r-md); }
.csr-row .csr-line{ display:flex; gap:8px; font-size: 13.5px; color: var(--text-secondary); }
.csr-row .csr-line b{ font-family: var(--font-head); font-weight:600; color: var(--navy); flex-shrink:0; min-width: 76px; }
.portfolio-results-lg{ display:flex; gap: 22px; flex-wrap:wrap; margin: 4px 0 20px; }
.portfolio-results-lg .res{ font-family: var(--font-head); }
.portfolio-results-lg .res b{ display:block; color: var(--success); font-size:22px; }
.portfolio-results-lg .res span{ font-size:12px; color: var(--text-muted); }

/* ---- 10. Testimonials: modern review experience ---- */
.testi-avatar-lg{
  width:58px; height:58px; border-radius:50%;
  background: var(--gradient-primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; font-size:18px;
  flex-shrink:0;
  box-shadow: 0 0 0 4px var(--bg-soft-blue);
}
.testi-top-row{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:16px;flex-direction: column;}
.testi-logo-chip{
  font-family: var(--font-head); font-weight:700; font-size:13px; color: var(--text-muted);
  display:flex; align-items:center; gap:6px;
}
.testi-tag{
  display:inline-block; font-family: var(--font-head); font-size:11.5px; font-weight:600;
  color: var(--primary); background: var(--bg-soft-blue); padding:4px 12px; border-radius: var(--r-pill);
  margin-top: 14px;
}

/* ---- 11. Free Website Audit lead magnet ---- */
.audit-block{padding: 54px;display:grid;grid-template-columns: 1.1fr 0.9fr;gap: 20px;align-items:center;}
.audit-benefits li{ display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; font-size:15px; color: var(--text-secondary); }
.audit-benefits li i{ color: var(--success); font-size:18px; margin-top:2px; }
.audit-tag{ display:inline-flex; align-items:center; gap:6px; background:#ECFDF5; color: var(--success); font-family:var(--font-head); font-weight:700; font-size:12.5px; padding:7px 16px; border-radius: var(--r-pill); margin-bottom:18px; }
.audit-form-card{ background: var(--bg-soft); border-radius: var(--r-lg); padding: 32px; }
@media (max-width: 900px){ .audit-block{ grid-template-columns: 1fr; padding: 38px 26px; } }
@media (max-width: 575px) {
  .audit-form-card {
    padding: 15px;
    border-radius: 12px;
  }
}

/* ---- 12. Sticky consultation button ---- */
.sticky-consult{
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  display:flex;
  align-items:center;
  gap:10px;
  background: var(--gradient-primary);
  color:#fff;
  font-family: var(--font-head);
  font-weight:600;
  font-size:14px;
  padding: 15px 22px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-primary);
  opacity:0;
  visibility:hidden;
  transform: translateY(14px);
  transition: all 0.4s var(--ease);
  width: 48px;
  height: 48px;
}
.sticky-consult.show{ opacity:1; visibility:visible; transform: translateY(0); }
.sticky-consult:hover{ transform: translateY(-3px); box-shadow: 0 22px 45px rgba(37,99,235,0.32); }
.sticky-consult i{ font-size:16px; }
@media (max-width: 575px){
  .sticky-consult span.full{ display:none; }
  .sticky-consult{ padding: 15px; }
  .back-to-top{right: 20px;bottom: 20px;}
  .sticky-consult{left: 20px;bottom: 20px;}
}
