/* =================================
HERO
================================ */

.hero{
  position:relative;
  margin-top:var(--header-height);
  height:calc(100vh - var(--header-height));
  min-height:700px;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background: radial-gradient(circle at 50% -20%, #eff6ff 0%, transparent 60%);
}

 .hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-image{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index: 1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  backdrop-filter:none;
  z-index:1;
}

.hero-overlay{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:auto;
  color:white;
}

.hero-title{
  color:white;
}
.hero h1 {
  font-size:3.4rem;
  font-weight:800;
  letter-spacing:-0.03em;
  margin-bottom:22px;
  color:var(--text-main);
}

.hero p {
  max-width:620px;
  margin:0 auto 34px;
  color:var(--text-muted);
  font-size:1.2rem;
}

/* =================================
Hero with no image (text only)
================================ */

/* HERO */
    .hero_text {
      text-align:center;
      padding:100px 0 70px;
      background: radial-gradient(circle at 50% -20%, #eff6ff 0%, transparent 60%);
    }

 

    .hero_text h1 {
      font-size:3.4rem;
      font-weight:800;
      letter-spacing:-0.03em;
      margin-bottom:22px;
      color:var(--text-main);
    }

    .hero_text p {
      max-width:620px;
      margin:0 auto 34px;
      color:var(--text-muted);
      font-size:1.2rem;
    }
/* =================================
 HERO IMAGE TEXT HERO
================================ */

.hero-image-text {
  text-align:center;
  padding:calc(var(--header-height) + 20px) 0 70px;
  background:radial-gradient(circle at 50% -20%,#eff6ff 0%,transparent 60%);
}

.hero-image-text h1{

font-size:3.4rem;
font-weight:800;
margin-bottom:20px;
color:var(--text-main);
}

.hero-image-text p{

max-width:600px;
margin:auto;
color:var(--text-muted);
font-size:1.2rem;
}


/* Base shared style */
.hero-image-text-italic {
  position: absolute;
  bottom: 30px;
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0;                 
  background: transparent;    
  border: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);               
  backdrop-filter: none;      
  z-index: 2;                 
}

/* CENTER */
.hero-image-text-italic.center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1.4rem;
  bottom: 100px;
  max-width: 80%;
}

/* LEFT */
.hero-image-text-italic.left {
  left: 40px;
  transform: none;
  text-align: left;
  max-width: 300px;
  bottom: 15px;
}

/* RIGHT */
.hero-image-text-italic.right {
  right: 40px;
  left: auto;
  transform: none;
  text-align: right;
  max-width: 300px;
  bottom: 15px;
}

/* Lists */
.hero-image-text-italic ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-image-text-italic li {
  margin-bottom: 6px;
}

.hero-image-text-italic li::before {
  content: "▸ ";
  color: #00ffff;
}

@media (max-width: 768px) {
  .hero-image-text-italic {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    text-align: center;
    max-width: 90%;
  }

  .hero-image-text-italic.right {
    bottom: 100px;
  }

  .hero-image-text-italic.left {
    bottom: 40px;
  }

  .hero-image-text-italic.center {
    bottom: 10px;
  }
}
/*----------------------*/

.hero-actions {

display:flex;
gap:14px;
justify-content:center;
margin-top:8px;

}

.eyebrow {
      display:inline-block;
  background:#e0f2fe;
  color:#0284c7;
  font-size:0.85rem;
  padding:6px 14px;
  border-radius:50px;
  font-weight:700;
  margin-bottom:24px;
}


    /* STATS */
    .stats-bar {
      margin-top:50px;
      padding:24px;
      background:var(--bg-accent);
      border:2px solid var(--border);
      border-radius:16px;
      display:flex;
      justify-content:center;
      gap:120px;
      flex-wrap:wrap;
      box-shadow:var(--shadow-sm);
    }

    .stat-item { text-align:center; }
    .stat-val {
      font-size:1.8rem;
      font-weight:800;
      color:var(--text-main);
    }
    .stat-label {
      font-size:0.9rem;
      color:var(--text-muted);
      margin-top:6px;
    }

    /* SECTION TITLES */
    .section-title {
      text-align:center;
      font-size:2.3rem;
      margin-bottom:10px;
      color:var(--text-main);
    }

    .section-subtitle {
      text-align:center;
      color:var(--text-muted);
      max-width:800px;
      margin:0 auto 50px;
      font-size:1.05rem;
    }

/* CARDS */
.services-grid {
  display: grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap: 28px;
  margin-top: 30px;
}
/* =================================
BUTTONS
================================ */

    /* BUTTONS */
    .btn {
      padding:10px 20px;
      border-radius:8px;
      font-weight:600;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:0.95rem;
      transition:0.2s;
      cursor:pointer;
    }

    .btn-primary {
      background:var(--primary);
      color:white;
      box-shadow:0 2px 4px rgba(37,99,235,0.25);
    }
    .btn-primary:hover {
      background:var(--primary-dark);
      transform:translateY(-2px);
      box-shadow:0 4px 10px rgba(37,99,235,0.3);
    }

    .btn-outline {
      background:white;
      border:1px solid var(--border);
      color:var(--text-main);
    }
    .btn-outline:hover {
      border-color:var(--primary);
      color:var(--primary);
      background:#f8fafc;
    }


/* =================================
CONTENT PAGE LAYOUT
================================ */

.content-page{

max-width:1100px;
margin:auto;
padding:40px;

line-height:1.7;
}

.content-page h1{

font-size:2.2rem;
margin-bottom:10px;
color:var(--text-main);
}

.content-page h2{

margin-top:40px;
border-bottom:2px solid #e5e7eb;
padding-bottom:6px;
}

.content-page p{

margin-top:16px;
font-size:1.05rem;
}

.content-page ul{

margin-top:12px;
padding-left:20px;
}

.content-page li{

margin-bottom:10px;
}

/* =================================
INFO BOX
================================ */

.info-box{

background:#f8fafc;
border-left:4px solid var(--primary);

padding:16px 20px;
margin-top:30px;

border-radius:8px;
}



.gradient-text{
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* =========================
   PRODUCTS DEVELOPEMENT STAGE TAG
========================= */
.tag{
display:inline-block;
margin-top:10px;
padding:4px 10px;
font-size:12px;
font-weight:600;
background:#020079;
color:#fff;
border-radius:20px;
}

/* =========================
   price page demo button
========================= */
.btn-demo{
display:block;
text-align:center;
margin-top:20px;
padding:12px;
background:var(--primary);
color:white;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.2s;
}

.btn-demo:hover{
background:#00004d;
}


/* ================
Logo container
===================  */

.brand-logo {
  height: auto;
  max-height: 100px; /* max height for large screens */
  width: auto;
  display: block;
}

/* Brand wrapper */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Logo image */
.logo-image {
  height: 10vh; /* scales with viewport height */
  max-height: 50px; /* keeps it reasonable */
  width: auto;
}

/* Text block */
.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Main brand name */
.logo-text {
  font-size: 2vw; /* scales with viewport width */
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* Subtitle */
.logo-subtext {
  font-size: 1vw;
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Logo square */
.logo-square {
  background: var(--primary-dark);
  color: #fff;
  width: 20vw; 
  max-width: 100px;
  height: 6vh;
  max-height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Responsive adjustments for very small screens */
@media (max-width: 480px) {
  .logo-text {
    font-size: 16px;
  }
  .logo-subtext {
    font-size: 9px;
  }
  .logo-image {
    height: 32px;
  }
  .logo-square {
    width: 80px;
    height: 32px;
  }
}

