/* =========================
   ROOT VARIABLES
========================= */
:root{
  --bg: #f6f7fb;
  --card: #ffffff;
  --card2: #f9fafc;
  --text: #101828;
  --muted: #667085;
  --line: #e6e8ee;
  --line2: #d9dee8;

  --red: #d92d20;
  --red2: #b42318;
  --gold: #f5b301;
  --green: #12b76a;
  --blue: #175cd3;

  --shadow: 0 18px 50px rgba(16,24,40,.08);
  --shadow2: 0 8px 24px rgba(16,24,40,.06);

  --r: 18px;
  --r2: 26px;
  --max: 1180px;
}

/* =========================
   GLOBAL RESET
========================= */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html, body{
  height:100%;
}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(23,92,211,.05), transparent 55%),
    radial-gradient(800px 360px at 90% 0%, rgba(18,183,106,.05), transparent 55%),
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
  color: var(--text);
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   ELEMENTS
========================= */
a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

/* =========================
   TYPOGRAPHY
========================= */
.section{
  padding:56px 0;
}

.section-title{
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height:1.05;
  letter-spacing:-1px;
  font-weight:900;
  margin-bottom:12px;
}

.section-sub{
  max-width:780px;
  color:var(--muted);
  line-height:1.65;
  font-weight:600;
}

/* =========================
   BADGE
========================= */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--blue);
  font-weight:800;
  font-size:.82rem;
  margin-bottom:14px;
  box-shadow: var(--shadow2);
}

/* =========================
   BUTTONS
========================= */
.btn-primary,
.btn-secondary,
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
  border-radius:14px;
  transition:all .2s ease;
  white-space:nowrap;
  cursor:pointer;
}

.btn-primary{
  padding:14px 18px;
  background: linear-gradient(180deg, var(--red), var(--red2));
  color:#fff;
  box-shadow: 0 14px 34px rgba(217,45,32,.18);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  padding:14px 18px;
  background:#fff;
  border:1px solid var(--line2);
  box-shadow: var(--shadow2);
}

.btn-secondary:hover{
  transform:translateY(-2px);
}

.btn-outline{
  padding:12px 16px;
  border:1px solid var(--line2);
}

.btn-outline:hover{
  background:#fff;
}

/* =========================
   HERO
========================= */
.hero{
  padding:38px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
}

.hero-copy-card{
  background:#fff;
  border-radius:var(--r2);
  padding:28px;
  box-shadow:var(--shadow);
}

.hero-title{
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight:950;
  margin-bottom:12px;
}

.hero-title .accent{
  color:var(--red);
}

.hero-text{
  color:var(--muted);
  margin-bottom:18px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   CARDS
========================= */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow2);
}

/* =========================
   GRID
========================= */
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

/* =========================
   ARTIST CARD
========================= */
.artist-card{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow2);
  transition:.2s;
}

.artist-card:hover{
  transform:translateY(-4px);
}

.artist-card .thumb{
  height:210px;
  background:#eef2f6;
}

.artist-card .thumb img{
  height:100%;
  width:100%;
  object-fit:cover;
}

.artist-body{
  padding:16px;
}

/* =========================
   BLOG CARD
========================= */
.blog-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow2);
  transition:.2s;
}

.blog-card:hover{
  transform:translateY(-4px);
}

.blog-card .image{
  height:210px;
}

.blog-body{
  padding:18px;
}

/* =========================
   SERVICES
========================= */
.service-card{
  padding:22px;
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow2);
}

.service-list{
  list-style:none;
  margin-top:12px;
}

.service-list li{
  display:flex;
  gap:10px;
  margin-bottom:8px;
}

/* =========================
   CTA
========================= */
.cta-box{
  background:#fff;
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1080px){
  .hero-grid,
  .cta-box{
    grid-template-columns:1fr;
  }

  .grid-4{
    grid-template-columns:repeat(2,1fr);
  }

  .grid-3{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 680px){
  .container{
    padding:0 16px;
  }

  .hero-title{
    font-size:2rem;
  }

  .grid-4,
  .grid-3,
  .grid-2{
    grid-template-columns:1fr;
  }

  .section{
    padding:40px 0;
  }
}