@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   Login Page
=========================== */

.login-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    background:linear-gradient(135deg,#2563eb,#4f46e5);
}

.login-wrapper{
    width:1100px;
    max-width:100%;
    min-height:650px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    display:flex;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.login-left{
    width:50%;
    background:linear-gradient(135deg,#2563eb,#4338ca);
    color:#fff;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.login-right{
    width:50%;
    background:#fff;
    padding:60px;
    display:flex;
    align-items:center;
}

.brand-logo{
    width:90px;
    height:90px;
    border-radius:20px;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:30px;
}

.brand-title{
    font-size:42px;
    font-weight:700;
    line-height:1.2;
}

.brand-subtitle{
    margin-top:20px;
    font-size:17px;
    opacity:.9;
    line-height:1.8;
}

.feature-list{
    margin-top:40px;
}

.feature-list li{
    list-style:none;
    margin-bottom:18px;
    font-size:16px;
}

.feature-list i{
    margin-right:12px;
}


/* =============================================
   ROOT / TOKENS
============================================= */

:root{
  --primary:#2563EB;
  --primary-dark:#1741c9;
  --indigo:#4F46E5;
  --ink:#0F172A;
  --ink-soft:#475569;
  --muted:#94A3B8;
  --bg:#FFFFFF;
  --bg-soft:#F8FAFC;
  --border:#E5E9F2;
  --radius-lg:24px;
  --radius-md:16px;
  --radius-sm:10px;
  --shadow-soft:0 8px 30px rgba(15,23,42,0.06);
  --shadow-card:0 20px 45px rgba(37,99,235,0.10);
  --gradient-primary:linear-gradient(135deg,#2563EB 0%,#4F46E5 100%);
  --gradient-text:linear-gradient(135deg,#2563EB 0%,#7C3AED 100%);
  --font-display:'Poppins', sans-serif;
  --font-body:'Poppins', sans-serif;
      overflow-x: hidden;
}


/* =============================================
   BASE
============================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

h1,
h2,
h3,
h4{
  font-family:var(--font-display);
  letter-spacing:-0.02em;
  color:var(--ink);
}

p{
  color:var(--ink-soft);
  line-height:1.7;
}

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

img{
  max-width:100%;
  display:block;
}

ul{
  list-style:none;
}

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


@media (prefers-reduced-motion: reduce){

  *{
    animation:none !important;
    transition:none !important;
  }

}


/* =============================================
   BUTTONS
============================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 26px;
  border-radius:100px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  cursor:pointer;
  transition:all .25s ease;
  white-space:nowrap;
}

.btn-lg{
  padding:16px 32px;
  font-size:16px;
}

.btn-block{
  width:100%;
}

.btn-primary{
  background:var(--gradient-primary);
  color:#fff;
  box-shadow:0 10px 25px rgba(37,99,235,0.35);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(37,99,235,0.45);
}

.btn-outline{
  background:#fff;
  color:var(--primary);
  border:1.5px solid var(--border);
}

.btn-outline:hover{
  border-color:var(--primary);
  background:rgba(37,99,235,0.04);
}

.btn-ghost{
  color:var(--ink-soft);
  padding:10px 16px;
}

.btn-ghost:hover{
  color:var(--primary);
}

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

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


/* =============================================
   NAVBAR
============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .35s ease;
}

.navbar .nav-container {
    width: 85%;
    margin: 0 auto;
    padding: 10px 16px 10px 20px;

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

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

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;

    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);

    transition: background .35s ease, box-shadow .35s ease;
}

.navbar.solid .nav-container {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.09);
}


/* LOGO */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;

    color: var(--ink);
    white-space: nowrap;
}

.nav-logo .logo-text {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 36px;
    height: 36px;

    border-radius: 12px;

    background: var(--gradient-primary);
    color: #fff;

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

    font-size: 16px;

    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}


/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    color: var(--ink-soft);
    transition: color .2s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}


/* ACTIONS */

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

.nav-actions .btn {
    font-family: var(--font-body);
}


/* MOBILE TOGGLE */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}


/* =============================================
   HERO
============================================= */

.hero{
  position:relative;
  padding:170px 0 100px;
  overflow:hidden;
  background:var(--bg);
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.glow{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:.35;
}

.glow-blue{
  width:520px;
  height:520px;
  background:#3B82F6;
  top:-160px;
  right:-120px;
}

.glow-purple{
  width:480px;
  height:480px;
  background:#8B5CF6;
  bottom:-200px;
  left:-140px;
  opacity:.25;
}

.grid-pattern{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(
    circle at 50% 30%,
    rgba(0,0,0,0.6),
    transparent 70%
  );
}

.float-shape{
  position:absolute;
  border-radius:24px;
  border:1px solid rgba(37,99,235,0.15);
  background:rgba(37,99,235,0.04);
  animation:floatY 6s ease-in-out infinite;
}

.shape-1{
  width:60px;
  height:60px;
  top:20%;
  left:6%;
  animation-delay:0s;
}

.shape-2{
  width:40px;
  height:40px;
  top:65%;
  left:12%;
  animation-delay:1.2s;
  border-radius:50%;
}

.shape-3{
  width:80px;
  height:80px;
  bottom:10%;
  right:8%;
  animation-delay:.6s;
}

@keyframes floatY{

  0%,
  100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-18px);
  }

}

.hero-container{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:60px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  background:rgba(37,99,235,0.08);
  color:var(--primary);
  font-weight:600;
  font-size:13.5px;
  border-radius:100px;
  border:1px solid rgba(37,99,235,0.15);
  margin-bottom:24px;
}

.hero-title{
  font-size:50px;
  line-height:1.12;
  font-weight:800;
  margin-bottom:22px;
}

.gradient-text{
  background:var(--gradient-text);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-desc{
  font-size:17px;
  max-width:520px;
  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:52px;
}

.hero-stats{
  display:flex;
  gap:44px;
}

.stat h3{
  font-size:28px;
  font-weight:800;
  color:var(--primary);
}

.stat p{
  font-size:13.5px;
  margin-top:4px;
}


/* =============================================
   HERO VISUAL
============================================= */

.hero-visual{
  position:relative;
  height:520px;
}

.dashboard-mock{
  background:#fff;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  box-shadow:var(--shadow-card);
  overflow:hidden;
  position:absolute;
  top:20px;
  left:0;
  width:100%;
}

.dashboard-header{
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 18px;
  background:var(--bg-soft);
  border-bottom:1px solid var(--border);
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
}

.dot.red{
  background:#F87171;
}

.dot.yellow{
  background:#FBBF24;
}

.dot.green{
  background:#34D399;
}

.dashboard-title{
  margin-left:8px;
  font-size:13px;
  color:var(--ink-soft);
  font-weight:600;
}

.dashboard-body{
  padding:24px;
}

.dash-chart{
  display:flex;
  align-items:flex-end;
  gap:10px;
  height:120px;
  margin-bottom:24px;
}

.dash-chart .bar{
  flex:1;
  background:var(--gradient-primary);
  border-radius:8px 8px 0 0;
  opacity:.85;
  animation:growUp 1.2s ease;
}

@keyframes growUp{

  from{
    transform:scaleY(0);
    transform-origin:bottom;
  }

  to{
    transform:scaleY(1);
  }

}

.dash-rows{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.dash-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:var(--ink-soft);
  font-weight:500;
  background:var(--bg-soft);
  padding:12px 14px;
  border-radius:12px;
}

.dash-row i{
  color:var(--primary);
}

.dash-row span{
  margin-left:auto;
  font-weight:700;
  color:var(--ink);
}

.floating-card{
  position:absolute;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.7);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
  animation:floatY 5s ease-in-out infinite;
}

.chat-widget-card{
  width:250px;
  bottom:70px;
  left:-30px;
  padding:14px;
  z-index:2;
}

.chat-mini-header{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  margin-bottom:10px;
}

.online-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22C55E;
  box-shadow:0 0 0 3px rgba(34,197,94,0.2);
}

.chat-mini-body{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.chat-bubble{
  font-size:12.5px;
  padding:8px 12px;
  border-radius:14px;
  max-width:90%;
  line-height:1.4;
}

.chat-bubble.bot{
  background:var(--bg-soft);
  align-self:flex-start;
  border:1px solid var(--border);
}

.chat-bubble.user{
  background:var(--gradient-primary);
  color:#fff;
  align-self:flex-end;
}

.analytics-card{
  width:200px;
  top:0;
  right:-10px;
  padding:16px;
  display:flex;
  align-items:center;
  gap:12px;
  animation-delay:.8s;
}

.analytics-card i{
  font-size:22px;
  color:#22C55E;
  background:rgba(34,197,94,0.1);
  padding:12px;
  border-radius:12px;
}

.analytics-value{
  display:block;
  font-size:19px;
  font-weight:800;
}

.analytics-label{
  font-size:11.5px;
  color:var(--ink-soft);
}


/* =============================================
   TRUSTED SECTION
============================================= */

.trusted{
  padding:50px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.trusted-label{
  text-align:center;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
  font-weight:700;
  margin-bottom:28px;
}

.trusted-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:48px;
  flex-wrap:wrap;
}

.trusted-logos span{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--muted);
  font-size:16px;
  transition:color .2s;
}

.trusted-logos span:hover{
  color:var(--primary);
}


/* =============================================
   SECTION HEAD
============================================= */

.section-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}

.eyebrow{
  display:inline-block;
  color:var(--primary);
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:14px;
}

.section-head h2{
  font-size:36px;
  margin-bottom:14px;
}


/* =============================================
   FEATURES
============================================= */

.features{
  padding:110px 0;
}

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

.feature-card{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:34px 28px;
  box-shadow:var(--shadow-soft);
  transition:transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-card);
}

.feature-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#fff;
  margin-bottom:20px;
}

.icon-blue{
  background:linear-gradient(135deg,#2563EB,#3B82F6);
}

.icon-indigo{
  background:linear-gradient(135deg,#4F46E5,#7C3AED);
}

.feature-card h3{
  font-size:19px;
  margin-bottom:10px;
}

.feature-card p{
  font-size:14.5px;
}


/* =============================================
   HOW IT WORKS
============================================= */

.how-it-works{
  padding:110px 0;
  background:var(--bg-soft);
}

.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  position:relative;
}

.timeline-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px 24px;
  text-align:center;
  position:relative;
  box-shadow:var(--shadow-soft);
}

.timeline-num{
  width:46px;
  height:46px;
  margin:0 auto 18px;
  border-radius:50%;
  background:var(--gradient-primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:17px;
  box-shadow:0 8px 20px rgba(37,99,235,0.35);
}

.timeline-item h3{
  font-size:17px;
  margin-bottom:8px;
}

.timeline-item p{
  font-size:13.5px;
}


/* =============================================
   LIVE CHAT DEMO
============================================= */

.chat-demo{
  padding:110px 0;
}

.chat-demo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.chat-demo-text .eyebrow{
  margin-bottom:12px;
  display:block;
}

.chat-demo-text h2{
  font-size:32px;
  margin-bottom:16px;
}

.check-list{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.check-list li{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  font-size:15px;
}

.check-list i{
  color:#22C55E;
  background:rgba(34,197,94,0.1);
  padding:6px;
  border-radius:50%;
  font-size:11px;
}

.widget-frame{
  max-width:380px;
  margin:0 auto;
  background:#fff;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  box-shadow:var(--shadow-card);
  overflow:hidden;
}

.widget-header{
  background:var(--gradient-primary);
  color:#fff;
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:12px;
}

.widget-header strong{
  display:block;
  font-size:15px;
}

.widget-header small{
  font-size:12px;
  opacity:.85;
}

.widget-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:280px;
  max-height:340px;
  overflow-y:auto;
  background:var(--bg-soft);
}

.widget-body .chat-bubble{
  font-size:14px;
  padding:11px 15px;
  border-radius:16px;
  max-width:82%;
}

.typing{
  display:flex;
  gap:4px;
  padding:12px 15px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  width:fit-content;
}

.typing span{
  width:6px;
  height:6px;
  background:var(--muted);
  border-radius:50%;
  animation:blink 1.2s infinite ease-in-out;
}

.typing span:nth-child(2){
  animation-delay:.2s;
}

.typing span:nth-child(3){
  animation-delay:.4s;
}

@keyframes blink{

  0%,
  80%,
  100%{
    opacity:.3;
  }

  40%{
    opacity:1;
  }

}

.widget-input{
  display:flex;
  gap:10px;
  padding:14px;
  border-top:1px solid var(--border);
  background:#fff;
}

.widget-input input{
  flex:1;
  border:1px solid var(--border);
  border-radius:100px;
  padding:11px 16px;
  font-size:14px;
  outline:none;
}

.widget-input input:focus{
  border-color:var(--primary);
}

.widget-input button{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--gradient-primary);
  color:#fff;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}


/* =============================================
   WHY CHOOSE US
============================================= */

.why-choose{
  padding:110px 0;
  background:var(--bg-soft);
}

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

.why-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:28px 20px;
  text-align:center;
  box-shadow:var(--shadow-soft);
  transition:transform .3s;
}

.why-item:hover{
  transform:translateY(-4px);
}

.why-item i{
  font-size:26px;
  color:var(--primary);
  margin-bottom:16px;
}

.why-item h3{
  font-size:16px;
  margin-bottom:8px;
}

.why-item p{
  font-size:13px;
}


/* =============================================
   PRICING
============================================= */

.pricing{
  padding:110px 0;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:start;
}

.price-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:36px 30px;
  box-shadow:var(--shadow-soft);
  position:relative;
  transition:transform .3s;
}

.price-card:hover{
  transform:translateY(-6px);
}

.price-card h3{
  font-size:18px;
  margin-bottom:16px;
  color:var(--ink-soft);
  font-weight:700;
}

.price-card .price{
  font-size:32px;
  font-weight:800;
  margin-bottom:24px;
}

.price-card .price span{
  color:var(--ink);
}

.price-card ul{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:30px;
}

.price-card ul li{
  font-size:14.5px;
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink-soft);
}

.price-card ul li i{
  color:var(--primary);
  font-size:12px;
}

.price-card.popular{
  border:2px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--gradient-primary) border-box;
  transform:scale(1.03);
  box-shadow:var(--shadow-card);
}

.popular-badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:var(--gradient-primary);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:6px 18px;
  border-radius:100px;
  box-shadow:0 8px 18px rgba(37,99,235,0.4);
}


/* =============================================
   TESTIMONIALS
============================================= */

.testimonials{
  padding:110px 0;
  background:var(--bg-soft);
}

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

.testimonial-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:30px;
  box-shadow:var(--shadow-soft);
}

.stars{
  color:#FBBF24;
  font-size:14px;
  margin-bottom:14px;
}

.testimonial-card p{
  font-size:14.5px;
  font-style:italic;
  margin-bottom:22px;
}

.testimonial-user{
  display:flex;
  align-items:center;
  gap:12px;
}

.testimonial-user img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
}

.testimonial-user strong{
  display:block;
  font-size:14px;
}

.testimonial-user span{
  font-size:12.5px;
  color:var(--muted);
}


/* =============================================
   FAQ
============================================= */

.faq{
  padding:110px 0;
}

.faq-list{
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
  background:#fff;
}

.faq-question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding:20px 24px;
  font-size:15.5px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  color:var(--ink);
}

.faq-question i{
  transition:transform .3s;
  color:var(--primary);
}

.faq-item.active .faq-question i{
  transform:rotate(180deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

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

.faq-answer p{
  padding:0 24px 20px;
  font-size:14.5px;
}


/* =============================================
   CTA
============================================= */

.cta{
  position:relative;
  padding:100px 0;
  background:var(--gradient-primary);
  overflow:hidden;
  text-align:center;
}

.cta-glow{
  position:absolute;
  width:600px;
  height:600px;
  background:rgba(255,255,255,0.15);
  border-radius:50%;
  filter:blur(80px);
  top:-250px;
  left:50%;
  transform:translateX(-50%);
}

.cta-inner{
  position:relative;
  z-index:1;
}

.cta h2{
  color:#fff;
  font-size:36px;
  margin-bottom:14px;
}

.cta p{
  color:rgba(255,255,255,0.85);
  margin-bottom:32px;
  font-size:16px;
}


/* =============================================
   FOOTER
============================================= */

.footer{
  background:#0B1220;
  color:#CBD5E1;
  padding:80px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr 1.4fr;
  gap:36px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.footer .nav-logo{
  color:#fff;
  margin-bottom:14px;
}

.footer-brand p{
  color:#94A3B8;
  font-size:13.5px;
  margin-bottom:20px;
  max-width:260px;
}

.social-icons{
  display:flex;
  gap:10px;
}

.social-icons a{
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s;
}

.social-icons a:hover{
  background:var(--primary);
}

.footer-col h4{
  color:#fff;
  font-size:14.5px;
  margin-bottom:18px;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-col a{
  color:#94A3B8;
  font-size:13.5px;
  transition:.2s;
}

.footer-col a:hover{
  color:#fff;
}

.footer-newsletter h4{
  color:#fff;
  font-size:14.5px;
  margin-bottom:10px;
}

.footer-newsletter p{
  color:#94A3B8;
  font-size:13px;
  margin-bottom:16px;
}

.newsletter-form{
  display:flex;
  gap:8px;
}

.newsletter-form input{
  flex:1;
  padding:11px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
  color:#fff;
  font-size:13.5px;
  outline:none;
}

.newsletter-form button{
  width:42px;
  border-radius:10px;
  background:var(--gradient-primary);
  border:none;
  color:#fff;
  cursor:pointer;
}

.footer-bottom{
  text-align:center;
  padding:24px 0;
  font-size:13px;
  color:#64748B;
}


/* =============================================
   BACK TO TOP
============================================= */

#backToTop{
  position:fixed;
  bottom:28px;
  right:28px;
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--gradient-primary);
  color:#fff;
  border:none;
  cursor:pointer;
  font-size:16px;
  box-shadow:0 10px 25px rgba(37,99,235,0.4);
  opacity:0;
  pointer-events:none;
  transition:all .3s;
  z-index:900;
}

#backToTop.show{
  opacity:1;
  pointer-events:auto;
}


/* =============================================
   RESPONSIVE
============================================= */

@media (max-width:1024px){

  .hero-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-desc{
    margin-inline:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-stats{
    justify-content:center;
  }

  .hero-visual{
    max-width:480px;
    margin:0 auto;
    height:480px;
  }

  .features-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .timeline{
    grid-template-columns:repeat(2,1fr);
  }

  .why-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .pricing-grid{
    grid-template-columns:repeat(1,1fr);
    max-width:420px;
    margin:0 auto;
  }

  .price-card.popular{
    transform:scale(1);
  }

  .testimonial-grid{
    grid-template-columns:repeat(1,1fr);
    max-width:480px;
    margin:0 auto;
  }

  .chat-demo-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .chat-demo-text .check-list{
    align-items:center;
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

}


@media (max-width:768px){

  .nav-menu,
  .nav-actions{
    display:none;
  }

.navbar .nav-container {
	width:90%;
}

  .nav-toggle{
    display:flex;
  }

  .navbar.open .nav-menu{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:24px;
    right:24px;
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:var(--shadow-card);
    gap:16px;
  }

  .navbar.open .nav-actions{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:270px;
    left:24px;
    right:24px;
    background:#fff;
    padding:0 20px 20px;
    border-radius:0 0 20px 20px;
  }

  .hero-title{
    font-size:34px;
  }

  .hero{
    padding:150px 0 70px;
  }

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

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

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-brand p{
    margin-inline:auto;
  }

  .social-icons{
    justify-content:center;
  }

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

  .hero-stats{
    gap:24px;
    flex-wrap:wrap;
  }

}


@media (max-width:480px){

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

  .hero-actions{
    flex-direction:column;
    width:100%;
  }

  .hero-actions .btn{
    width:100%;
  }

  .chat-widget-card{
    display:none;
  }

}

/* =====================================================
   BLOG PAGE
   Blog-specific styles only.
   Global/base/navbar/footer/button styles are already
   present in this stylesheet.
===================================================== */

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 90px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(37,99,235,0.10),
      transparent 35%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(124,58,237,0.08),
      transparent 30%
    ),
    #fff;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,0.15);
  margin-bottom: 22px;
}

.blog-hero h1 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 20px;
}

.blog-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
}

.blog-section {
  padding: 20px 0 100px;
  background: #fff;
}

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

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,0.20);
  box-shadow: var(--shadow-card);
}

.blog-image-wrap {
  width: 100%;
  height: 220px;
  background: var(--bg-soft);
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.blog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(37,99,235,0.08),
      rgba(124,58,237,0.08)
    );
  color: var(--primary);
  font-size: 42px;
}

.blog-card-body {
  padding: 24px;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 750;
  margin-bottom: 12px;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  transition: gap .2s ease;
}

.read-more:hover {
  gap: 12px;
}

/* =====================================================
   BLOG EMPTY STATE
===================================================== */

.empty-blog {
  text-align: center;
  padding: 70px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.empty-blog i {
  font-size: 42px;
  color: var(--muted);
  margin-bottom: 20px;
}

.empty-blog h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

/* =====================================================
   BLOG PAGINATION
===================================================== */

.pagination-wrap {
  margin-top: 55px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  background: #fff;
}

.pagination .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* =====================================================
   BLOG RESPONSIVE
===================================================== */

@media (max-width: 1024px) {

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .blog-hero {
    padding: 145px 0 70px;
  }

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

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

}

@media (max-width: 480px) {

  .blog-hero h1 {
    font-size: 31px;
  }

  .blog-card-body {
    padding: 20px;
  }

  .blog-image-wrap {
    height: 200px;
  }

}


/* =====================================================
   BLOG DETAILS / ARTICLE PAGE
   Article-specific styles only
===================================================== */

.article-hero {
    padding: 165px 0 60px;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(37, 99, 235, 0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(124, 58, 237, 0.07),
            transparent 30%
        );
}

.article-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.back-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
}

.back-blog:hover {
    text-decoration: underline;
}

.article-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.article-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 22px;
}

.article-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
}


/* =====================================================
   FEATURED IMAGE
===================================================== */

.article-image-container {
    max-width: 1000px;
    margin: 20px auto 70px;
}

.article-featured-image {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.10);
    border: 1px solid var(--border);
}

.article-image-placeholder {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.08),
            rgba(124, 58, 237, 0.08)
        );
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 60px;
}


/* =====================================================
   ARTICLE CONTENT
===================================================== */

.article-content-section {
    padding: 0 0 100px;
}

.article-layout {
    max-width: 850px;
    margin: 0 auto;
}

.article-content {
    font-size: 17px;
    line-height: 1.85;
    color: var(--ink-soft);
}

.article-content p {
    margin-bottom: 22px;
}

.article-content h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-top: 42px;
    margin-bottom: 18px;
}

.article-content h3 {
    font-size: 24px;
    line-height: 1.35;
    margin-top: 34px;
    margin-bottom: 15px;
}

.article-content h4 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 25px 25px;
}

.article-content li {
    margin-bottom: 9px;
    line-height: 1.75;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
}

.article-content strong {
    color: var(--ink);
    font-weight: 700;
}

.article-content blockquote {
    margin: 30px 0;
    padding: 22px 25px;
    border-left: 4px solid var(--primary);
    background: var(--bg-soft);
    border-radius: 0 12px 12px 0;
    color: var(--ink-soft);
}

.article-content img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 16px;
}

.article-content pre {
    overflow-x: auto;
    background: #0F172A;
    color: #E2E8F0;
    padding: 20px;
    border-radius: 14px;
    margin: 25px 0;
}

.article-content code {
    font-family: monospace;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.article-content th,
.article-content td {
    border: 1px solid var(--border);
    padding: 12px 14px;
    text-align: left;
}

.article-content th {
    background: var(--bg-soft);
    color: var(--ink);
    font-weight: 700;
}


/* =====================================================
   ARTICLE RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .article-hero {
        padding: 145px 0 45px;
    }

    .article-title {
        font-size: 36px;
    }

    .article-subtitle {
        font-size: 15px;
    }

    .article-image-container {
        margin-bottom: 50px;
    }

    .article-featured-image {
        border-radius: 16px;
    }

    .article-image-placeholder {
        height: 280px;
        border-radius: 16px;
    }

    .article-content {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 27px;
    }

    .article-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .article-title {
        font-size: 31px;
    }
}

/* =====================================================
   HEADER TYPOGRAPHY - SAME ON ALL PAGES
   Home / Blog / Blog Details
===================================================== */

.navbar .nav-container,
.navbar .nav-logo,
.navbar .nav-logo .logo-text,
.navbar .nav-menu a,
.navbar .nav-actions .btn,
.navbar .nav-toggle {
    font-family: 'Poppins', sans-serif !important;
}

.navbar .nav-logo,
.navbar .nav-logo .logo-text {
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
}

.navbar .nav-menu a {
    font-size: 14.5px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
}

.navbar .nav-actions .btn {
    font-size: 15px !important;
    font-weight: 600 !important;
}

.navbar .nav-toggle {
    font-size: inherit;
}

/* =====================================================
   HOME PAGE MOBILE FIX
===================================================== */

@media (max-width: 768px) {

    .hero {
        padding: 125px 0 55px;
        overflow: hidden;
    }

    .hero-container {
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
        display: block;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .hero-desc {
        max-width: 100%;
        margin: 0 auto 28px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 35px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    /* Desktop dashboard completely hidden on mobile */
    .hero-visual {
        display: none !important;
    }

    .hero-bg {
        overflow: hidden;
    }

    .glow-blue {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -120px;
    }

    .glow-purple {
        width: 280px;
        height: 280px;
        bottom: -100px;
        left: -120px;
    }

    .grid-pattern {
        background-size: 32px 32px;
    }

    .float-shape {
        display: none;
    }
}


@media (max-width: 480px) {

    .hero {
        padding: 120px 0 45px;
    }

    .hero-container {
        padding: 0 18px;
    }

    .hero-title {
        font-size: 31px;
        line-height: 1.12;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-actions {
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat h3 {
        font-size: 24px;
    }

    .stat p {
        font-size: 12px;
    }
}

