
/* Simple responsive theme for IN CAB PARTNER */
:root{
  --primary:#ffd700;
  --dark:#0b0b0b;
  --muted:#666;
  --maxw:1100px;
  --radius:12px;
}
*{box-sizing:border-box}
body{
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  color:var(--dark);
  background:#f7f7f9;
  line-height:1.6;
}
.container{max-width:var(--maxw);margin:0 auto;padding:20px;}
.header{
  background:white;padding:12px 20px;border-bottom:1px solid #eee;position:sticky;top:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--dark)}
.brand img{height:54px;width:54px;object-fit:contain;border-radius:8px}
.nav a{margin-left:18px;text-decoration:none;color:var(--dark);font-weight:600}
.hero{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center;padding:40px 20px;background-image:linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.9));
}
.hero .text h1{font-size:36px;margin:0 0 10px}
.cta{display:inline-block;margin-top:14px;padding:12px 18px;border-radius:10px;background:var(--primary);color:#000;text-decoration:none;font-weight:700}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:22px}
.card{background:white;padding:18px;border-radius:12px;box-shadow:0 6px 18px rgba(10,10,10,0.04);min-height:120px}
.card h3{margin:0 0 8px}
.section{padding:36px 20px}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:center}
.footer{
  background:#0b0b0b;color:white;padding:24px 20px;margin-top:30px;border-top-left-radius:18px;border-top-right-radius:18px;
}
.footer .inner{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;align-items:center}
.footer a{color:var(--primary);text-decoration:none}
.small{font-size:14px;color:var(--muted)}
.apps{display:flex;gap:12px}
.app-badge{display:inline-block;padding:8px 10px;border-radius:8px;background:#111;color:white;text-decoration:none;font-weight:700}

.logo-inline{height:40px;width:auto}

@media (max-width:900px){
  .hero{grid-template-columns:1fr; text-align:center}
  .cards{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .nav{display:none}
  .brand img{height:44px}
}
.contact-form{background:white;padding:18px;border-radius:12px;box-shadow:0 6px 18px rgba(10,10,10,0.04)}
.input,textarea{width:100%;padding:10px;margin-top:8px;border-radius:8px;border:1px solid #e6e6e6}
.btn{display:inline-block;padding:10px 14px;border-radius:10px;background:var(--primary);font-weight:700;text-decoration:none;color:#000;margin-top:8px}
.small-muted{font-size:13px;color:var(--muted)}
