.elementor-1922 .elementor-element.elementor-element-929ee8b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ee0368b *//* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #020617;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HERO */
.hero {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 30px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  background: #0ea5e9;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

/* SECTION */
.section {
  margin: 80px 0;
  text-align: center;
}

.section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.section p {
  font-size: 1.05rem;
  color: #334155;
  font-weight: 500;
}

/* GRID */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD */
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.card p {
  color: #475569;
  font-size: 1rem;
}

/* LIST */
ol {
  max-width: 600px;
  margin: auto;
  text-align: left;
  padding-left: 20px;
}

ol li {
  font-size: 1.05rem;
  font-weight: 600;
  color: #020617;
  margin: 12px 0;
}

/* CTA */
.cta {
  background: #0ea5e9;
  color: #ffffff;
  text-align: center;
  padding: 70px 30px;
  border-radius: 16px;
}

.cta h2 {
  font-size: 2.4rem;
  font-weight: 900;
}

.cta p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

  .container {
    padding: 30px 15px;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    display: block;
    width: 100%;
    margin: 10px 0 !important;
    text-align: center;
  }

  .section {
    margin: 50px 0;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .section p,
  ol li {
    font-size: 1rem;
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }

  .cta {
    padding: 50px 20px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }
}/* End custom CSS */
/* Start custom CSS *//* ===== AgentAutomatorAI Homepage CSS ===== */

body{
  margin:0;
  background:#0f172a;
  color:#e5e7eb;
  font-family:system-ui, Arial, sans-serif;
  line-height:1.7;
}

a{text-decoration:none;}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HERO */
.hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  background:linear-gradient(120deg,#020617,#1e293b);
  border-radius:24px;
  margin:40px auto;
}
.hero-content{
  padding:70px;
}
.hero h1{
  font-size:46px;
  line-height:1.2;
  margin-bottom:20px;
}
.hero p{
  max-width:650px;
  font-size:18px;
  color:#cbd5f5;
}

/* BUTTON */
.btn{
  display:inline-block;
  background:#38bdf8;
  color:#020617;
  padding:12px 26px;
  border-radius:8px;
  font-weight:600;
  margin-top:15px;
  transition:0.2s ease;
}
.btn:hover{transform:translateY(-2px);}

/* SECTION */
.section{
  margin:90px 0;
}

/* GRID */
.grid3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.card{
  background:#020617;
  padding:30px;
  border-radius:18px;
  box-shadow:0 0 25px rgba(0,0,0,0.4);
  transition:0.3s ease;
}
.card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 35px rgba(56,189,248,0.4);
}
.card h3{margin-bottom:10px;}

/* LIST */
ol{
  padding-left:20px;
}
ol li{
  margin-bottom:10px;
}

/* CTA */
.cta{
  text-align:center;
  padding:80px 20px;
  border-radius:24px;
  background:linear-gradient(120deg,#0ea5e9,#38bdf8);
  color:#020617;
}
.cta h2{
  font-size:36px;
  margin-bottom:15px;
}
.cta p{
  font-size:18px;
}
.cta .btn{
  background:#020617;
  color:#fff;
}

/* MOBILE */
@media(max-width:768px){
  .hero-content{padding:40px;}
  .hero h1{font-size:32px;}
}/* End custom CSS */