:root{
    --bg:#f8fafc;
    --surface:#ffffff;
    --muted:#64748b;
    --accent:#4f46e5;
    --accent-dark:#4338ca;
    --accent-600:#6366f1;
    --card:#ffffff;
    --glass:rgba(255,255,255,0.6);
    --max-width:1200px;
    --radius:14px;
    --container-padding:24px;
    --gradient-main:linear-gradient(135deg,#4f46e5,#2563eb,#7c3aed);
} 

.hero{
    background:
    radial-gradient(700px 500px at 0% 10%, rgba(79,70,229,0.14), transparent 60%),
    radial-gradient(700px 500px at 100% 90%, rgba(124,58,237,0.12), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    color:#0f172a;
    padding:110px 0 80px;
    position:relative;
    overflow:hidden;
}

.hero-inner{
    display:flex;
    flex-direction:row; 
    align-items:stretch;
    width:100%;
}

.hero-left{
    flex:1;
    padding-left:72px; 
    padding-right:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-right{
    width:800px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-right:48px;
}

.eyebrow{
    color:var(--accent);
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:1px;
    font-size:13px;
    margin-bottom:14px;
}

.hero h1{
    font-size:56px;
    line-height:1.05;
    margin:0 0 22px;
    font-weight:800;
}

.hero h1 .highlight{
    background:var(--gradient-main);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-transform:uppercase;
}

.hero p.lead{
    color:var(--muted);
    font-size:18px;
    max-width:64ch;
    margin-bottom:20px;
}

.hero .cta-row{
    display:flex;
    gap:14px;
    flex-wrap:wrap; 
    margin-top:26px;
}

.tf-btn{
    background:var(--gradient-main);
    color:white;
    padding:16px 24px;
    border-radius:12px;
    font-weight:700;
    transition:.25s ease;
    box-shadow:0 10px 30px rgba(79,70,229,0.25);
}

.tf-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(79,70,229,0.35);
}

.tf-btn.secondary{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.06);
    color:#0f172a;
}

.hero-card{
    width:100%;
    height:100%;
    max-height:520px;
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
      0 30px 70px rgba(0,0,0,0.08),
      0 0 0 1px rgba(0,0,0,0.04);
    transform:rotate(1.5deg);
    transition:0.35s ease;
    position:relative;
}

.hero-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    opacity:0;
    transition:0.4s;
}

.hero-card:hover{
    transform:rotate(0deg) scale(1.03);
}

.hero-card:hover::after{
    opacity:1;
}

.hero-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cta-smart2{
  position:relative;
  overflow:hidden;
  background:var(--gradient-main);
  color:#fff;
  font-size:1.2rem;
  font-weight:700;
  padding:14px 26px;
  border-radius:12px;
  z-index:1;
  transition:.25s ease;
  box-shadow:0 10px 25px rgba(79,70,229,0.35);
}

.cta-smart2:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 14px 30px rgba(79,70,229,0.5);
}