/* =========================================================
   SERVICES PAGES
   Used on services.html and labels-tags.html.
========================================================= */


/* ---------- services.html ---------- */

.hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 100px 120px;
      background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      border: 1px solid rgba(26, 58, 82, 0.15);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 32px;
    }

.hero-badge span {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
    }

.hero h1 {
      font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
      font-size: var(--h1-size);
      font-weight: 700;
      margin-bottom: 24px;
      line-height: 1.2;
      max-width: 800px;
    }

.hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 600px;
      line-height: 1.7;
      margin-bottom: 40px;
    }

.hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

.what-we-do {
      padding: 100px 120px;
      max-width: 1400px;
      margin: 0 auto;
    }

.what-we-do-header {
      text-align: center;
      margin-bottom: 50px;
    }

.services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

.service-card {
      background: var(--card-bg);
      border: var(--card-border);
      border-radius: var(--card-radius);
      padding: 40px 30px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: var(--card-shadow);
    }

.service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-shadow-hover);
    }

.service-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--card-icon-bg);
      border: var(--card-border);
      border-radius: 50%;
      margin: 0 auto 20px;
    }

.service-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--primary);
    }

.service-card h3 {
      color: var(--primary);
      font-weight: 700;
      margin: 15px 0 10px;
      font-size: 18px;
    }

.service-card p {
      color: #34495e;
      font-size: 14px;
      line-height: 1.6;
    }

.service-link {
      display: none;
    }

.features-section {
      background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
      padding: 100px 40px;
    }

.features-container {
      max-width: 1200px;
      margin: 0 auto;
    }

.features-header {
      text-align: center;
      margin-bottom: 60px;
    }

.features-header .section-label {
      color: var(--accent);
    }

.features-header .section-title {
      color: var(--primary);
    }

.features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

.feature-item {
      background: var(--card-bg);
      padding: 36px 28px;
      border: var(--card-border);
      border-radius: var(--card-radius);
      transition: all 0.3s ease;
      box-shadow: var(--card-shadow);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

.feature-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-shadow-hover);
    }

.feature-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--card-icon-bg);
      border: var(--card-border);
      border-radius: 50%;
      margin-bottom: 20px;
    }

.feature-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--primary);
    }

.feature-item h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--primary);
      line-height: 1.3;
    }

.feature-item p {
      font-size: 14px;
      color: #34495e;
      line-height: 1.6;
      margin: 0;
    }

.stats-section {
      padding: 80px 40px;
      background: #f8fafc;
    }

.stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

.stat-item {
      text-align: center;
    }

.stat-number {
      font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 8px;
    }

.stat-label {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
    }


/* ---------- labels-tags.html ---------- */

.tags-gallery {
      padding: 60px 20px 80px;
      background: #f8f9fa;
    }

.tags-container {
      max-width: 1400px;
      margin: 0 auto;
    }

.tags-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 25px;
    }

.tag-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      border: var(--card-border);
      box-shadow: var(--card-shadow);
      transition: all 0.35s ease;
      aspect-ratio: 1/1.2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
    }

.tag-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-shadow-hover);
      border-color: rgba(255, 165, 0, 0.6);
    }

.tag-card img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

.tag-card:hover img {
      transform: scale(1.05);
    }