* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gradient: linear-gradient(
    135deg,
    #fef3c7 0%,
    #ffffba 15%,
    #baffc9 30%,
    #9e379f 50%,
    #ec4899 70%,
    #e86af0 85%,
    #be29ec 100%
  );
  --secondary-gradient: linear-gradient(
    135deg,
    #ffffba 0%,
    #ec4899 50%,
    #e86af0 85%,
    #be29ec 100%
  );
  --text-dark: #1a202c;
  --text-light: #718096;
  --bg-light: #fef3f0;
  --bg-white: #ffffff;
  --border-color: #7c9dd8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --button-black: #000000;
  --button-black-hover: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cabinet Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  font-family: "Cabinet Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.8;
}

.logo svg {
  display: block;
  flex-shrink: 0;
}

.logo span {
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -2px;
}

.logo-spinner {
  animation: spin 2s linear infinite;
}

@import url("https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap");

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffffba 0%, #ec4899 100%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.language-switcher {
  display: flex;
  background: #fef3f0;
  border-radius: 50px;
  padding: 3px;
}

.lang-btn {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  padding: 0.4rem 0.8rem;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--bg-white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.cta-button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.cta-button.primary {
  background: var(--button-black);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  background: var(--button-black-hover);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.cta-button.secondary:hover {
  background: var(--bg-light);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Section Layout */
.section {
  min-height: 100vh;
  padding-top: 80px;
  scroll-margin-top: 70px;
  position: relative;
}

#home {
  padding-top: 0;
}

#about {
  background: transparent;
  padding: 0;
}

.about-background {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 186, 0.5) 0%,
    rgba(186, 255, 201, 0.3) 20%,
    rgba(45, 95, 207, 0.5) 50%,
    rgba(236, 72, 153, 0.7) 80%,
    rgba(232, 106, 240, 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

.about-background::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(251, 191, 36, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(236, 72, 153, 0.08) 0%,
      transparent 40%
    );
  z-index: -1;
  animation: float 30s infinite;
}

#services {
  background: #ffffff;
}

#contact {
  background: linear-gradient(to bottom, #fef3f0 0%, #ffffff 100%);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #fef3c7 0%,
    #ffffba 20%,
    #fecaca 40%,
    #f9a8d4 60%,
    #ec4899 80%,
    #db2777 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1a1a1a;
}

.gradient-text {
  font-family: "Bitcount", monospace;
  background: linear-gradient(135deg, #be185d 0%, #be185d 50%, #831843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#hero-title {
  /* font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal; */
  font-family: "Bitcount Prop Single Ink", system-ui;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0.5, "ELSH" 0, "ELXP" 0, "SZP1" 0,
    "SZP2" 0, "XPN1" 0, "XPN2" 0, "YPN1" 0, "YPN2" 0;
}

.hero-description {
  font-size: 1.25rem;
  color: #374151;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #be185d 0%, #be185d 50%, #831843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #374151;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Background Orbs */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #fef3c7 0%, #ffffba 50%, #f9a8d4 100%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #baffc9 0%, #ec4899 100%);
  bottom: -50px;
  right: -50px;
  animation-delay: 5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #baffc9 0%, #db2777 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, 20px) scale(1.05);
  }
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
  background: var(--bg-white);
}

.section-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 3rem;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--button-black);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Section Headers */
.services-hero,
.contact-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.page-title {
  font-size: 56px;
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-dark);
}

/* About Author Card */
.about-author-card {
  display: flex;
  gap: 5rem;
  align-items: center;
  padding: 6rem 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.author-image-container {
  flex-shrink: 0;
  position: relative;
  width: 320px;
  height: 320px;
  order: 2;
}

.author-image-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #baffc9 0%, #7c9dd8 50%, #9b8ec1 100%);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  filter: blur(20px);
}

.author-image {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  filter: brightness(1.1) contrast(1.1) saturate(0.9);
  mix-blend-mode: normal;
}

.author-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(155, 142, 193, 0.4) 0%,
    rgba(124, 157, 216, 0.5) 30%,
    rgba(155, 142, 193, 0.3) 60%,
    transparent 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

.author-content {
  flex: 1;
  order: 1;
  max-width: 650px;
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(91, 141, 217, 0.1);
  border: 1px solid rgba(91, 141, 217, 0.3);
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.badge-number {
  font-weight: 700;
  color: #5b8dd9;
  font-size: 1.1rem;
}

.badge-text {
  color: #5b8dd9;
  font-size: 0.9rem;
}

.author-name {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  font-weight: 800;
}

.name-primary {
  color: #4a7bd9;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.name-secondary {
  color: #2d3748;
  font-weight: 500;
  font-size: 52px;
}

.author-bio {
  margin-bottom: 2.5rem;
}

.author-bio p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a5568;
  font-weight: 400;
}

.author-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 1px solid #831843;
  border-radius: 8px;
  color: #4a5568;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: #f7fafc;
  color: #2d3748;
  border-color: #cbd5e0;
  transform: translateY(-1px);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* About Values Section */
.about-values {
  padding: 3rem 0 5rem;
}

.about-values .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  position: relative;
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-left: 4px solid transparent;
  background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
    var(--primary-gradient) border-box;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
  border-left-color: #ec4899;
}

.value-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2d5fcf 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* Process/What to Expect Section */
.process-section {
  background: linear-gradient(
    135deg,
    #fef3c7 0%,
    #ffffff 40%,
    #baffc9 70%,
    #2d5fcf 100%
  );
  padding: 5rem 0;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .section-subtitle {
  max-width: 700px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 80px;
  bottom: 80px;
  width: 3px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    #ffffba 10%,
    #ec4899 50%,
    #ffffba 90%,
    transparent 100%
  );
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-left: 80px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.marker-number {
  width: 50px;
  height: 50px;
  background: var(--bg-white);
  border: 3px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ec4899;
  background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
    var(--primary-gradient) border-box;
  box-shadow: 0 5px 20px rgba(236, 72, 153, 0.2);
  transition: all 0.3s ease;
}

.timeline-step:hover .marker-number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
}

.timeline-content {
  background: var(--bg-white);
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid var(--bg-white);
  filter: drop-shadow(-1px 0 1px rgba(0, 0, 0, 0.05));
}

.timeline-step:hover .timeline-content {
  transform: translateX(5px);
  box-shadow: 0 10px 35px rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.1);
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* Services Page */
.services-detailed {
  padding: 3rem 0 5rem;
}

.service-detail {
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #be29ec 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-detail h2 {
  font-size: 2rem;
}

.service-detail p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ec4899;
  font-weight: bold;
}

/* Contact Page */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3rem 0 5rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ec4899;
}

.contact-info {
  padding: 2rem 0;
}

.contact-card {
  background: linear-gradient(
    135deg,
    #fef3c7 0%,
    #baffc9 30%,
    #7c9dd8 70%,
    #9b8ec1 100%
  );
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item svg {
  color: #be29ec;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Portfolio Section */
.portfolio-section {
  background: var(--bg-white);
  padding: 100px 0 80px;
}

.portfolio-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.portfolio-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: "Inter", sans-serif;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--border-color);
  background: transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: #ec4899;
  color: #ec4899;
}

.filter-btn.active {
  background: var(--button-black);
  border-color: transparent;
  color: white;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: none;
}

.project-card.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card.featured {
  grid-column: span 2;
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: var(--bg-light);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(186, 255, 201, 1) 0%,
    rgba(186, 255, 201, 0.9) 50%,
    rgba(45, 95, 207, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--button-black);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.project-link:hover {
  transform: scale(1.05);
}

.project-status {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--button-black);
  border-radius: 50px;
  font-weight: 600;
}

.project-content {
  padding: 2rem;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.project-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.3rem 0.8rem;
  background: linear-gradient(
    135deg,
    rgba(186, 255, 201, 0.5) 0%,
    rgba(45, 95, 207, 0.5) 100%
  );
  border-radius: 20px;
  font-size: 0.85rem;
  color: #ec4899;
  font-weight: 500;
}

/* Case Study Slider Section */
.case-study-section {
  background: linear-gradient(
    135deg,
    #ec4899 0%,
    #f9a8d4 30%,
    #fef3c7 70%,
    #fef3c7 100%
  );
  border-radius: 30px;
  padding: 4rem;
  margin-bottom: 4rem;
  overflow: hidden;
}

.case-study-slider {
  position: relative;
}

.slider-container {
  overflow: hidden;
  margin-bottom: 2rem;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.case-study-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
}

.case-study-slide.active {
  display: block;
  opacity: 1;
}

.slide-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.case-study-content {
  max-width: 800px;
  margin: 0 auto;
}

.case-study-block {
  margin-bottom: 2.5rem;
}

.case-study-block h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.case-study-block p {
  color: var(--text-dark);
  line-height: 1.8;
}

.tech-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.tech-list li {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  text-align: center;
  color: var(--text-dark);
}

/* Slider Navigation */
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: var(--button-black);
  color: white;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: #ec4899;
  transform: scale(1.2);
}

.dot:hover {
  background: #ec4899;
}

/* Portfolio CTA */
.portfolio-cta {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #be185d 0%, #be185d 50%, #831843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Portfolio */
@media (max-width: 992px) {
  .project-card.featured {
    grid-column: span 1;
  }

  .case-study-section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-bottom {
  margin-top: 1rem;
}

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 1rem;
  transition: var(--transition);
}

.footer-links-bottom a:hover {
  color: white;
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-policy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-policy-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: var(--button-black);
  color: white;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  background: var(--button-black-hover);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cookie-btn.decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-author-card {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .author-image-container {
    width: 280px;
    height: 280px;
    order: 1;
  }

  .author-image {
    width: 280px;
    height: 280px;
  }

  .author-content {
    order: 2;
  }

  .author-name {
    font-size: 2.2rem;
  }

  .name-secondary {
    font-size: 2.2rem;
  }

  .author-badge {
    margin: 0 auto 1.5rem;
  }

  .author-social {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 48px;
  }

  .page-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .author-name,
  .name-secondary {
    font-size: 40px;
  }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 0;
    box-shadow: var(--shadow-md);
    z-index: 100;
    border-top: 1px solid var(--bg-light);
  }

  .nav-menu.active {
    display: flex;
    padding: 1rem;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav-menu.active {
    display: flex;
    max-height: 500px;
    padding: 1rem;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }

  .nav-link:hover {
    background: var(--bg-light);
    border-radius: 8px;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    padding: 1rem 0;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-step {
    padding-left: 60px;
    margin-bottom: 2.5rem;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .marker-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .author-image-container {
    width: 220px;
    height: 220px;
  }

  .author-image {
    width: 220px;
    height: 220px;
  }

  .author-name {
    font-size: 32px;
  }

  .name-secondary {
    font-size: 32px;
  }

  .author-bio p {
    font-size: 1rem;
  }

  .about-author-card {
    gap: 2rem;
    padding: 4rem 0 3rem;
  }
}
