﻿/* Theme 1: Studio */
:root {
  --blue: #0b5bd3;
  --red: #ff4d4d;
  --yellow: #ffc83d;
  --ink: #0b1220;
  --muted: #56677a;
  --paper: #f3f6fb;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(5, 20, 50, 0.16);
  --grad-main: linear-gradient(120deg, #0b5bd3 0%, #ff4d4d 55%, #ffc83d 100%);
}

body.theme-1 .hero {
  padding: 90px 0 70px;
}

body.theme-1 .hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

body.theme-1 .hero-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

body.theme-1 .stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

body.theme-1 .stat-strip .stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

body.theme-1 .service-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

body.theme-1 .service-tile {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
}

body.theme-1 .service-tile:nth-child(1) { border-color: #0b5bd3; }
body.theme-1 .service-tile:nth-child(2) { border-color: #ff4d4d; }
body.theme-1 .service-tile:nth-child(3) { border-color: #ffc83d; }

body.theme-1 .cta-band {
  background: var(--grad-main);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  body.theme-1 .hero-grid {
    grid-template-columns: 1fr;
  }
  body.theme-1 .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
