:root{
--accent:#0b63ce;
--bg:#f7f9fc;
--text:#0f1724;
--muted:#6b7280;
--card:#ffffff;
--radius:12px;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body{
margin:0;
background:var(--bg);
color:var(--text);
line-height:1.6;
padding:32px;
}

.container{
max-width:1000px;
margin:auto;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.logo{
font-weight:700;
font-size:20px;
}

.hero{
margin-bottom:40px;
}

.hero h1{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size:40px;
    margin:0 0 10px 0;
}
/* 
.hero p{
font-size:18px;
color:var(--muted);
} */

.stats{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:20px;
}

.stat{
background:var(--accent);
color:white;
padding:8px 12px;
border-radius:8px;
font-weight:600;
}

.section{
margin:40px 0;
}

.section__content{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    margin:40px 0;
}

.card{
background:var(--card);
padding:20px;
border-radius:var(--radius);
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

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

.grid2{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

h2{
margin-top:0;
}

table{
width:100%;
border-collapse:collapse;
}

td,th{
border:1px solid #e5e7eb;
padding:10px;
text-align:left;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.btn{
display:inline-block;
margin-top:20px;
background:var(--accent);
color:white;
padding:12px 18px;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

footer{
margin-top:60px;
font-size:14px;
color:var(--muted);
display:flex;
justify-content:space-between;
flex-wrap:wrap;
margin-bottom: 60px;
}


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

.dark-card {
  padding: 24px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  /* max-width: 500px; */
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.scenario {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label {
  font-weight: 600;
}

.bar-container {
  width: 100%;
  height: 10px;
  background: #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
}

.bar {
  height: 100%;
  border-radius: 6px;
}

.bar.full {
  width: 100%;
  background: #4f8cff;
}

.bar.reduced {
  width: 70%;
  background: #22c55e;
}

.meta {
  /* display: flex; */
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.9;
}

.cost {
  font-weight: 600;
}

.optimized .label {
  color: #22c55e;
}

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

.solution-card {
  padding: 40px;
  border-radius: 20px;
  /* background: linear-gradient(180deg, #111 0%, #171717 100%); */
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 900px;
  margin: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.solution-card h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  /* color: white; */
}

.solution-text {
  font-size: 1.05rem;
  line-height: 1.7;
  /* color: rgba(255,255,255,0.82); */
  margin-bottom: 18px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 35px;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background: rgb(201, 199, 239);
  color: black;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-content {
  display: none;

  position: absolute;
  top: 100%;
  left: 0;

  background: white;
  min-width: 240px;

  border: 1px solid #ccc;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.2s ease;
}

.benefit:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}

.benefit-icon {
  font-size: 1.4rem;
  line-height: 1;
}
/* Nav  */
.logo img {
  height: 100px;
  width: auto;
  display: block;
}


.nav-item.dropdown {
  position: relative;
  display: inline-block;
}

.navbar {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: black;
}
/* Nav End */

.benefit h3 {
  margin: 0 0 6px 0;
  /* color: white; */
  font-size: 1rem;
}

.benefit p {
  margin: 0;
  /* color: rgba(255,255,255,0.7); */
  font-size: 0.92rem;
  line-height: 1.5;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.hero {
  padding: 25px 24px 72px;
  align-items: center;
}

.hero__content {
  /* max-width: 960px; */
  margin: 0 auto;
  line-height: 1.5;
}

.hero h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: clamp(48px, 7vw, 60px);
  line-height: 1.30;
  align-items: center;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 32px;
  /* max-width: 900px; */
}

.hero__lead {
  font-size: 25px;
  line-height: 1.5;
  color: #374151;
  /* margin: 0 0 18px; */
}
 
.hero-bullets{
    font-size: 25px;
  line-height: 1.5;
  color: #374151;
  /* margin: 0 0 18px; */
    
}

.unordered_bullets{
    font-size: 25px;
    /* align-items: center; */
    line-height: 1.5;
    color: #374151;
    margin: 0 0 18px;
    
}

.hero__description {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #181818;
  margin: 0;
  max-width: 760px;
}

.cards {
  max-width: 960px;
  margin: 0 auto 120px;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.card p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #374151;
}

.card p:last-child {
  margin-bottom: 0;
}

.card__title {
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280 !important;
  margin-bottom: 20px !important;
}

.card__highlight {
  color: #111111 !important;
  font-weight: 600;
}



.industry-card summary {
    color: rgb(42, 75, 182);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

/* Remove default triangle */
.industry-card summary::-webkit-details-marker {
  display: none;
}

/* Add a custom arrow */
.industry-card summary::after {
  content: "▾";
  font-size: 14px;
  transition: transform 0.2s ease;
}

/* Rotate when open */
.industry-card[open] summary::after {
  transform: rotate(180deg);
}

/* Keep title clean */
.industry-card summary h3 {
  margin: 0;
  font-size: 18px;
}

/* TEAM PAGE */

.team_container {

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;
    margin: 0 auto 120px;
    align-items: flex-start;
    gap: 40px;
}

.profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.content {
    flex: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .profile-img {
        width: 160px;
        height: 160px;
    }

    .content {
        text-align: center;
    }

}


/* Use Cases */

.use-case {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding: 96px 24px;
  background: #ffffff;
  color: #111111;
}

.use-case__content {
  max-width: 920px;
  margin: 0 auto;
}

.use-case__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 20px;
}

.use-case__header h2 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.use-case__lead {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 760px;
  margin-bottom: 24px;
}

.use-case__highlight {
  font-size: 20px;
  line-height: 1.7;
  color: #111111;
  max-width: 780px;
  padding-left: 20px;
  border-left: 2px solid #d1d5db;
  margin-bottom: 56px;
}

.use-case__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.use-case__item {
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.use-case__item .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.use-case__item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

.use-case__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.use-case__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111111;
  font-weight: 500;
  font-size: 15px;
}

.use-case__link:hover {
  opacity: 0.7;
}

.use-case__metric {
  text-align: right;
  font-size: 20px;
}

.use-case__metric span {
  display: block;
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 4px;
}

.use-case__metric strong {
  font-size: 20px;
  font-weight: 600;
  color: #111111;
}

@media (max-width: 768px) {
  .use-case {
    padding: 72px 20px;
  }

  .use-case__header h2 {
    font-size: 34px;
  }

  .use-case__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .use-case__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .use-case__metric {
    text-align: left;
  }
}