/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors from Logo */
  --primary-color: #10b981; /* Green from logo */
  --secondary-color: #3b82f6; /* Blue from logo */
  --accent-color: #1e40af; /* Darker blue */
  --background-color: #ffffff; /* White */
  --background-light: #f0f9ff; /* Light blue tint */
  --text-color: #1e293b; /* Dark slate */
  --text-light: #64748b; /* Slate gray */
  --white: #ffffff;
  --green-light: #34d399; /* Light green */
  --blue-light: #60a5fa; /* Light blue */
  
  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --header-height: 5rem;
  --section-padding: 4rem 0;
  --container-padding: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 3.5rem);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section__title--center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--green-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #059669 0%, var(--primary-color) 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn--secondary:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--blue-light) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== SOCIAL BAR ===== */
.social-bar {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 2.5rem;
}

.social-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 2.5rem;
}

.social-bar__text {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.social-bar__links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-link {
  color: var(--white);
  transition: var(--transition-fast);
  padding: 0.15rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 2.5rem;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-height);
}

.nav__logo-img {
  height: 4.5rem;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
  margin-left: 6rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.nav__cta .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.nav__toggle span {
  width: 1.5rem;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition-fast);
}

/* Hero banner text styles */
.hero__banner-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero__banner-main {
  display: block;
  color: var(--text-color);
}

.hero__banner-brand {
  display: block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__banner-subtitle {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.hero__banner-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  overflow: hidden;
  padding-top: calc(var(--header-height) + 4.5rem);
  padding-bottom: 3rem;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero__logo {
  animation: float 3s ease-in-out infinite;
  position: relative;
}

.hero__logo-img {
  height: 18rem;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(16, 185, 129, 0.4));
  position: relative;
  z-index: 2;
}

.hero__decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Decorative pieces */
.decoration-piece {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

.piece-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.piece-2 {
  top: 20%;
  right: -15%;
  animation-delay: 1s;
}

.piece-3 {
  bottom: 30%;
  left: -5%;
  animation-delay: 2s;
}

.piece-4 {
  bottom: 10%;
  right: -10%;
  animation-delay: 3s;
}

/* Decorative lines */
.decoration-line {
  position: absolute;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.2;
  border-radius: 2px;
}

.line-1 {
  width: 60px;
  height: 3px;
  top: 15%;
  left: -20%;
  transform: rotate(45deg);
  animation: pulse 3s ease-in-out infinite;
}

.line-2 {
  width: 40px;
  height: 2px;
  top: 70%;
  right: -15%;
  transform: rotate(-30deg);
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.line-3 {
  width: 50px;
  height: 2px;
  bottom: 20%;
  left: -25%;
  transform: rotate(60deg);
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 3s;
}

/* Decorative dots */
.decoration-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  opacity: 0.4;
  animation: scaleIn 2s ease-in-out infinite;
}

.dot-1 {
  top: 25%;
  right: -8%;
  animation-delay: 0.5s;
}

.dot-2 {
  bottom: 40%;
  left: -12%;
  animation-delay: 2.5s;
}

.dot-3 {
  top: 60%;
  right: -20%;
  animation-delay: 4s;
}

.hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.1;
  position: relative;
}

.hero__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--section-padding);
  background-color: var(--white);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-right: 2rem;
}

.about__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.about__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
  margin: 0;
}

.about__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__feature-icon {
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__feature-content {
  flex: 1;
}

.about__feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 0.5rem 0;
}

.about__feature-description {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
}

.about__right {
  position: relative;
  margin-left: 3rem;
}

.about__image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--background-light) 0%, #e5e7eb 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about__person {
  text-align: center;
  z-index: 2;
}

.about__person-avatar {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about__person-info h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 0.5rem 0;
}

.about__person-info p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.about__decorations {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about__triangle {
  position: absolute;
  width: 0;
  height: 0;
}

.about__triangle--orange {
  top: 20%;
  right: -10px;
  border-left: 30px solid var(--primary-color);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.about__triangle--blue {
  top: 25%;
  right: -5px;
  border-left: 20px solid var(--secondary-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.design-studio {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monitor {
  width: 180px;
  height: 120px;
  position: relative;
  z-index: 3;
}

.monitor-screen {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 0.5rem;
  border: 3px solid #475569;
  position: relative;
  overflow: hidden;
}

.code-lines {
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.code-line {
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
  border-radius: 2px;
  animation: codeTyping 2s ease-in-out infinite;
}

.code-line:nth-child(1) { width: 60%; animation-delay: 0s; }
.code-line:nth-child(2) { width: 80%; animation-delay: 0.5s; }
.code-line:nth-child(3) { width: 40%; animation-delay: 1s; }
.code-line:nth-child(4) { width: 90%; animation-delay: 1.5s; }

.code-line.active {
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--blue-light) 100%);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.monitor-stand {
  width: 60px;
  height: 20px;
  background: linear-gradient(135deg, #475569 0%, #64748b 100%);
  border-radius: 0 0 0.5rem 0.5rem;
  margin: 0 auto;
  position: relative;
}

.monitor-stand::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  border-radius: 0.25rem;
}

.design-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.element {
  position: absolute;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.element-1 {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--green-light));
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, var(--secondary-color), var(--blue-light));
  bottom: 30%;
  left: 15%;
  animation-delay: 1s;
}

.element-3 {
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, var(--green-light), var(--primary-color));
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

@keyframes codeTyping {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.about__text {
  padding: 2rem 0;
}

.about__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-padding);
  background-color: var(--background-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service__card {
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service__card:hover::before {
  transform: scaleX(1);
}

.service__card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.service__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.service__icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.service__card:hover .service__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.service__card:hover .service__icon svg {
  transform: scale(1.1);
}

.icon-website::before {
  content: '🌐';
  font-size: 1.5rem;
}

.icon-shop::before {
  content: '🛒';
  font-size: 1.5rem;
}

.icon-seo::before {
  content: '📈';
  font-size: 1.5rem;
}

.icon-all::before {
  content: '⚡';
  font-size: 1.5rem;
}

.service__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.service__card:hover .service__title {
  color: var(--primary-color);
}

.service__description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.125rem;
  margin-bottom: 0;
  flex-grow: 1;
}

.service__features {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.5rem;
}

.service__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.service__link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.service__feature {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service__feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.services__note {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.services__note::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  transform: translate(30px, -30px);
  opacity: 0.1;
}

.services__note p {
  font-weight: 700;
  color: var(--text-color);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: var(--section-padding);
  background-color: var(--background-color);
}

.process__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.process__number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--blue-light) 100%);
  opacity: 0;
  transition: var(--transition);
}

.process__step:hover .process__number::before {
  opacity: 1;
}

.process__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.process__description {
  color: var(--text-light);
  font-size: 0.9rem;
}

.process__cta {
  text-align: center;
}

/* ===== STATS SECTION ===== */
.stats {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(16,185,129,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.stat__item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.stat__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1;
}

.stat__label {
  font-size: 1.125rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats__info {
  text-align: center;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.stats__info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}

.stats__info p {
  font-size: 1.25rem;
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.stats__info strong {
  color: var(--primary-color);
  font-weight: 700;
}

.stats__cta {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PROJECTS SECTION ===== */
.projects {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.projects__banner {
  text-align: center;
  padding: 4rem 2rem;
}

.projects__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.projects__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.projects .btn--primary {
  background-color: var(--white);
  color: var(--white);
  position: relative;
  z-index: 2;
}

.projects .btn--primary:hover {
  background-color: var(--background-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: var(--section-padding);
  background-color: var(--background-color);
}

.faq__list {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.faq__item {
  background-color: #f8fafc;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.faq__question {
  width: 100%;
  padding: 2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-color);
  transition: var(--transition-fast);
  font-family: var(--font-display);
  font-size: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.faq__question:hover {
  background-color: #f1f5f9;
}

.faq__icon {
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
  font-weight: bold;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 2rem 2rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.125rem;
}

.faq__contact {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--background-light) 0%, #f8fafc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.faq__contact p {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-color);
  font-weight: 500;
}

.faq__contact a {
  color: var(--primary-color);
  font-weight: 700;
}

.faq__contact a:hover {
  text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--section-padding);
  background-color: var(--background-color);
}

.contact__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.contact__info p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact__details {
  margin-bottom: 3rem;
}

.contact__item {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.contact__item a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact__item a:hover {
  text-decoration: underline;
}

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

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.pricing-card__price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-card__features li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose__item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-choose__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-choose__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    color: white;
}

.why-choose__icon svg {
    width: 2rem;
    height: 2rem;
}

.why-choose__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.why-choose__description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.seo-sea-cta {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.seo-sea-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-sea-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.seo-sea-cta .cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

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

/* ===== PRICING CARD DESCRIPTION ===== */
.pricing-card__description {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(34, 197, 94, 0.1);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.pricing-card__description p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--primary-color);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  justify-content: flex-start;
}

.footer__logo-img {
  height: 4.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer__contact {
  text-align: right;
  color: var(--white);
}

.footer__contact p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.footer__nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer__nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer__nav-link:hover {
  color: var(--primary-color);
}

.footer__bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer__copyright p {
  margin: 0;
  font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes subtleFlow {
  0%, 100% { 
    transform: translateX(-100%) translateY(-100%);
    opacity: 0.3;
  }
  25% { 
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.6;
  }
  50% { 
    transform: translateX(0%) translateY(0%);
    opacity: 0.4;
  }
  75% { 
    transform: translateX(50%) translateY(50%);
    opacity: 0.7;
  }
}

@keyframes gradientShift {
  0%, 100% { 
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  }
  25% { 
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  }
  50% { 
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  }
  75% { 
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* Animation classes */
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations */
.service__card:nth-child(1) { animation-delay: 0.1s; }
.service__card:nth-child(2) { animation-delay: 0.2s; }
.service__card:nth-child(3) { animation-delay: 0.3s; }
.service__card:nth-child(4) { animation-delay: 0.4s; }

.process__step:nth-child(1) { animation-delay: 0.1s; }
.process__step:nth-child(2) { animation-delay: 0.2s; }
.process__step:nth-child(3) { animation-delay: 0.3s; }
.process__step:nth-child(4) { animation-delay: 0.4s; }
.process__step:nth-child(5) { animation-delay: 0.5s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --section-padding: 3rem 0;
  }
  
  .social-bar {
    display: none;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .hero {
    padding-top: var(--header-height);
  }
  
  .nav {
    justify-content: space-between;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: opacity 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    display: flex;
  }
  
  .nav__menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    align-items: center;
  }
  
  .nav__cta {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    align-items: center;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero__left {
    text-align: center;
  }
  
  .hero__right {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero__logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero__decorations {
    text-align: center;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hero__logo-img {
    height: 12rem;
  }
  
  .hero__banner-title {
    font-size: 2rem;
  }
  
  .hero__banner-subtitle {
    font-size: 1.5rem;
  }
  
  .hero__banner-description {
    font-size: 1rem;
  }
  
  .about__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about__left {
    margin-right: 0;
    text-align: center;
  }
  
  .about__right {
    margin-left: 0;
    text-align: center;
  }
  
  .about__left .btn {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
  
  .about__title {
    font-size: 2rem;
  }
  
  .about__image-placeholder {
    height: 400px;
  }
  
  .about__image-placeholder {
    height: 300px;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service__card {
    text-align: center;
  }
  
  .service__card {
    padding: 2rem 1.5rem;
  }
  
  .service__icon {
    width: 4rem;
    height: 4rem;
  }
  
  .service__icon svg {
    width: 2rem;
    height: 2rem;
  }
  
  .service__title {
    font-size: 1.25rem;
  }
  
  .service__description {
    font-size: 1rem;
  }
  
  .process__steps {
    grid-template-columns: 1fr;
  }
  
  .process__step {
    text-align: center;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer__logo {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  .footer__brand {
    text-align: center;
  }
  
  .footer__contact {
    text-align: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .footer__bottom {
    text-align: center;
  }
  
  .footer__copyright {
    text-align: center;
  }
  
  .stats__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .stats__grid {
    text-align: center;
  }
  
  .stat__item {
    text-align: center;
  }
  
  .stats__info {
    text-align: center;
  }
  
  .section__title {
    font-size: 2rem;
    text-align: center;
  }
  
  .section__title--center {
    text-align: center;
  }
  
  .projects__title {
    font-size: 2rem;
    text-align: center;
  }
  
  .projects__subtitle {
    text-align: center;
  }
  
  .projects__banner {
    text-align: center;
  }
  
  .faq__list {
    text-align: center;
  }
  
  .faq__item {
    text-align: left;
  }
  
  .faq__contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__logo-img {
    height: 6rem;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .service__card {
    padding: 1.5rem;
  }
  
  .process__step {
    padding: 1rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.nav__link:focus,
.faq__question:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-light: var(--text-color);
    --background-light: var(--background-color);
  }
}

/* ===== PROJECTS PAGE ===== */

/* Page Header for Projects */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: calc(var(--header-height) + 7rem) 0 4rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3rem;
}

.contact-page .page-header {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
}

.offerte-page .page-header {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.page-description {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.projects-grid {
  padding: var(--section-padding);
  background-color: var(--background-color);
}

.projects-grid__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.project-card {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.project-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--background-light) 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.1;
}

.project-card__icon {
  font-size: 4rem;
  opacity: 0.3;
}

.project-card__content {
  padding: 2rem;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.project-card__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-card__tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.projects-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  color: white;
}

.projects-cta__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.projects-cta__subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Active nav link */
.nav__link--active {
  color: var(--primary-color);
}

.nav__link--active::after {
  width: 100%;
}

/* Mobile responsiveness for projects page */
@media (max-width: 768px) {
  .projects-hero__title {
    font-size: 2rem;
  }
  
  .projects-grid__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .projects-cta__title {
    font-size: 2rem;
  }
  
  .projects-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}
