/* ================================
   SPRITE SHEET GENERATOR DESIGN
   Web Design Industry Template
   ================================ */

:root {
  --primary-color: #964B00;
  --accent-color: #8B9467;
  --bg-color: #F5F5DC;
  --dark-color: #2F4F4F;
  --white-color: #FFFFFF;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #C9C4B5;
  --gradient-pink: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 34px rgba(0, 0, 0, 0.16);
  --container-width: 1200px;
  --spacing-section: 81px;
  --spacing-element: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Merriweather', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white-color);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 23px;
}

img:not(.logo-img):not(.logo) {
  max-width: 100%;
  height: auto;
}

.logo-img {
  max-width: 53px;
  height: auto;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
  background: var(--gradient-pink);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-color) !important;
  text-decoration: none;
}

.site-name {
  color: var(--white-color);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--white-color) !important;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white-color);
  color: var(--primary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--bg-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 2px solid var(--white-color);
  color: var(--white-color);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  padding: 0.5rem;
}

.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--bg-color);
  color: var(--primary-color);
}

/* ================================
   HERO SECTION - SPRITE GRID
   ================================ */

.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-section) 0;
  background: var(--gradient-pink);
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 1rem 0;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-benefits {
  list-style: none;
  margin: 1.5rem 0;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.hero-benefits i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white-color);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* SPRITE GRID ANIMATION */

.hero-sprite-container {
  position: relative;
}

.sprite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.sprite-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.sprite-item:hover {
  transform: scale(1.05) rotate(2deg);
  z-index: 10;
}

.sprite-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sprite-item:hover .sprite-image {
  transform: scale(1.1);
}

.sprite-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(236, 72, 153, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sprite-item:hover .sprite-overlay {
  opacity: 1;
}

.sprite-play {
  font-size: 3rem;
  color: var(--white-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.sprite-animation-preview {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 11px;
  backdrop-filter: blur(11px);
}

.preview-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.preview-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white-color);
  width: 40px;
  height: 37px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-btn:hover,
.preview-btn.active {
  background: var(--white-color);
  color: var(--primary-color);
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.decoration-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s infinite;
  pointer-events: none;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.decoration-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: -98px;
  animation-delay: 5s;
}

.decoration-3 {
  width: 150px;
  height: 150px;
  bottom: -74px;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-19px) rotate(180deg); }
}

/* ================================
   SECTIONS
   ================================ */

section {
  padding: var(--spacing-section) 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-pink);
  color: var(--white-color);
  padding: 0.5rem 1.5rem;
  border-radius: 53px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ================================
   FEATURES
   ================================ */

.features-section {
  background: var(--bg-color);
}

.feature-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  text-align: left;
}

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

.feature-icon {
  width: 59px;
  height: 62px;
  background: var(--gradient-pink);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--white-color);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.feature-text {
  color: var(--text-light);
  line-height: 1.7;
}

.feature-sprite-preview {
  display: flex;
  gap: 4px;
  margin-top: 1rem;
}

.sprite-mini {
  width: 31px;
  height: 27px;
  background: var(--gradient-pink);
  border-radius: 4px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.feature-card:hover .sprite-mini {
  opacity: 1;
}

.sprite-mini-2 {
  animation-delay: 0.1s;
}

.sprite-mini-3 {
  animation-delay: 0.2s;
}

/* ================================
   SERVICES
   ================================ */

.service-card {
  background: var(--white-color);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

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

.service-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover .service-overlay {
  opacity: 0.9;
}

.service-overlay i {
  font-size: 3rem;
  color: var(--white-color);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.service-text {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

/* ================================
   STATS
   ================================ */

.stats-section {
  background: var(--gradient-pink);
  color: var(--white-color);
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-content .stat-number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-content .stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonials-section {
  background: var(--bg-color);
}

.testimonial-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  text-align: left;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 58px;
  height: 63px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark-color);
  font-size: 1.125rem;
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ================================
   TEAM
   ================================ */

.team-card {
  text-align: center;
  background: var(--white-color);
  border-radius: 19px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(236, 72, 153, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 15px;
}

.team-social a {
  width: 42px;
  height: 37px;
  background: var(--white-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: all;
}

.team-social a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-content {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ================================
   PROCESS TIMELINE
   ================================ */

.process-section {
  background: var(--bg-color);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 72px;
  width: 2px;
  height: calc(100% + 21px);
  background: var(--gradient-pink);
  pointer-events: none;
}

.timeline-icon {
  flex-shrink: 0;
  width: 57px;
  height: 62px;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  position: relative;
}

.timeline-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white-color);
}

.timeline-content {
  flex: 1;
  background: var(--white-color);
  padding: 1.5rem;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================
   PORTFOLIO
   ================================ */

.portfolio-preview,
.portfolio-gallery {
  padding: var(--spacing-section) 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
}

.portfolio-item {
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.portfolio-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(236, 72, 153, 0.95);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0.5rem;
}

.portfolio-category {
  font-size: 1rem;
  color: var(--white-color);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.portfolio-link {
  width: 53px;
  height: 49px;
  background: var(--white-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  pointer-events: all;
  transition: transform 0.3s ease;
}

.portfolio-link:hover {
  transform: scale(1.1);
}

.portfolio-filters {
  padding: 2rem 0;
  text-align: center;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-btn {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  color: var(--text-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-pink);
  border-color: var(--primary-color);
  color: var(--white-color);
}

/* ================================
   FAQ
   ================================ */

.faq-image img {
  border-radius: 13px;
  box-shadow: var(--shadow-md);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  background: var(--white-color);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-button {
  background: var(--white-color);
  color: var(--dark-color);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-pink);
  color: var(--white-color);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
  filter: none;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
  padding: var(--spacing-section) 0;
}

.cta-card {
  background: var(--gradient-pink);
  color: var(--white-color);
  padding: 4rem 3rem;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  opacity: 0.95;
}

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.decoration-sprite {
  position: absolute;
  width: 100px;
  height: 103px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  pointer-events: none;
}

.decoration-sprite-1 {
  top: -47px;
  right: -48px;
  transform: rotate(15deg);
}

.decoration-sprite-2 {
  bottom: -50px;
  left: 10%;
  transform: rotate(-15deg);
}

.decoration-sprite-3 {
  top: 50%;
  right: 5%;
  transform: rotate(25deg);
}

/* ================================
   BLOG
   ================================ */

.blog-section {
  padding: var(--spacing-section) 0;
}

.blog-card {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

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

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-pink);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 48px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 2;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 15px;
}

/* ================================
   ARTICLE PAGE
   ================================ */

.article-page {
  padding: var(--spacing-section) 0;
}

.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.article-category {
  background: var(--gradient-pink);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 47px;
  font-weight: 600;
}

.article-date,
.article-author,
.article-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
}

.article-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-lead {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

.article-featured-image {
  margin-bottom: 3rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.article-quote {
  background: var(--bg-color);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark-color);
}

.article-quote footer {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--text-light);
}

.article-image {
  margin: 2.5rem 0;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.article-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--bg-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 49px;
  font-size: 0.875rem;
  font-weight: 600;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.share-label {
  font-weight: 600;
  color: var(--text-color);
}

.share-link {
  width: 39px;
  height: 40px;
  background: var(--gradient-pink);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.share-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-section {
  padding: var(--spacing-section) 0;
}

.contact-info {
  background: var(--gradient-pink);
  color: var(--white-color);
  padding: 3rem;
  border-radius: 16px;
  height: 100%;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info-text {
  opacity: 0.95;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 47px;
  height: 47px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.contact-value {
  font-size: 1.125rem;
  color: var(--white-color);
  text-decoration: none;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-social {
  margin-top: 2rem;
}

.contact-social-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-form-wrapper {
  background: var(--white-color);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.contact-form-text {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-content {
  padding: var(--spacing-section) 0;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.legal-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-contact {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.legal-contact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* ================================
   PAGE HERO
   ================================ */

.page-hero {
  padding: 6rem 0 3rem;
  background: var(--gradient-pink);
  color: var(--white-color);
  text-align: left;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.25rem;
  opacity: 0.95;
}

.page-hero-image img {
  border-radius: 19px;
  box-shadow: var(--shadow-lg);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item.active {
  color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* ================================
   SERVICE PAGE
   ================================ */

.service-hero {
  padding: 6rem 0 3rem;
  background: var(--gradient-pink);
  color: var(--white-color);
}

.service-page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-page-lead {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.service-hero-image {
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.service-features {
  padding: var(--spacing-section) 0;
  background: var(--bg-color);
}

.service-process {
  padding: var(--spacing-section) 0;
}

/* ================================
   ABOUT PAGE
   ================================ */

.about-story {
  padding: var(--spacing-section) 0;
}

.story-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.story-list {
  list-style: none;
  margin: 1.5rem 0;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.story-list i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.story-images {
  position: relative;
}

.story-image img {
  border-radius: 19px;
  box-shadow: var(--shadow-md);
}

.story-image-main {
  margin-bottom: 1rem;
}

.values-section {
  padding: var(--spacing-section) 0;
  background: var(--bg-color);
}

.value-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.value-icon {
  width: 81px;
  height: 82px;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white-color);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.value-text {
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================
   FOOTER
   ================================ */

.footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 1rem;
}

.footer-text {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 13px;
}

.social-link {
  width: 39px;
  height: 43px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-4px);
}

.footer-title {
  color: var(--white-color);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-copyright {
  font-size: 0.9375rem;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-legal li {
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title,
  .service-page-title,
  .article-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .sprite-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sprite-image {
    height: 150px;
  }

  .timeline-item {
    gap: 1rem;
  }

  .timeline-item:not(:last-child)::after {
    left: 21px;
  }

  .timeline-icon {
    width: 50px;
    height: 48px;
  }

  .footer-legal {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-title,
  .service-page-title,
  .article-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .sprite-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 2rem;
  }

  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
