/* BİLGE YAZILIM - CSS Styles */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent-purple: #8e24aa;
  --accent-purple-dark: #7b1fa2;
  --accent-purple-light: #9c27b0;
  --accent-green: #00ff00;
  --accent-blue: #0080ff;
  --border-color: #333333;
  --shadow-color: rgba(142, 36, 170, 0.8);
  --font-primary: 'Orbitron', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --nav-height: 70px;
}

[data-theme=light] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --accent-purple: #8e24aa;
  --accent-purple-dark: #7b1fa2;
  --border-color: #dee2e6;
  --shadow-color: rgba(142, 36, 170, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container, .nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav-container {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container, .nav-container {
    padding: 0 20px;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, .95);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

[data-theme=light] .navbar {
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  padding: 0.2rem 0;
  flex-shrink: 0;
  min-width: fit-content;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  padding: 0.2rem 0;
  flex-shrink: 0;
  min-width: fit-content;
}

.footer-logo .hero-brand-main {
  font-size: 1.85rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.footer-logo .hero-brand-sub {
  font-size: 0.9rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.logo-bilge, .logo-yazilim {
  color: #8e24aa;
  text-shadow: 0 1px 2px rgba(142, 36, 170, 0.4);
  filter: brightness(0.95);
}

.logo-bilge {
  text-transform: none;
}

[data-theme=light] .logo-bilge,
[data-theme=light] .logo-yazilim {
  color: #8e24aa;
  text-shadow: 0 1px 2px rgba(142, 36, 170, 0.3);
  filter: brightness(0.98);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    flex-direction: column;
    align-items: center;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  [data-theme=light] .nav-menu {
    background: rgba(255, 255, 255, 0.95);
  }
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu a:hover {
  color: var(--accent-purple);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-purple);
  transition: width var(--transition-fast);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.theme-btn:hover {
  transform: scale(1.1);
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 2px 5px var(--shadow-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  display: block;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 16px 40px;
  position: relative;
  margin-top: -35px;
}

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

.matrix-rain {
  background: linear-gradient(45deg, #000 0, #1a1a1a 50%, #000 100%);
  opacity: .8;
  width: 100%;
  height: 100%;
}


.bilge-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding-top: 10vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bilge-text {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(50px, 12vw, 100px);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 0.85;
  white-space: nowrap;
  user-select: none;
  transform: rotate(-2deg);
  animation: float 25s infinite ease-in-out;
  text-shadow: 0 0 20px currentColor;
}

.bilge-text:nth-child(1) { color: #4a0d5a; opacity: 0.25; animation-delay: 0s; }
.bilge-text:nth-child(2) { color: #50105f; opacity: 0.28; animation-delay: 0.3s; }
.bilge-text:nth-child(3) { color: #561364; opacity: 0.31; animation-delay: 0.6s; }
.bilge-text:nth-child(4) { color: #5c1669; opacity: 0.34; animation-delay: 0.9s; }
.bilge-text:nth-child(5) { color: #62196e; opacity: 0.37; animation-delay: 1.2s; }
.bilge-text:nth-child(6) { color: #681c73; opacity: 0.40; animation-delay: 1.5s; }
.bilge-text:nth-child(7) { color: #6e1f78; opacity: 0.43; animation-delay: 1.8s; }
.bilge-text:nth-child(8) { color: #74227d; opacity: 0.46; animation-delay: 2.1s; }
.bilge-text:nth-child(9) { color: #7a2582; opacity: 0.49; animation-delay: 2.4s; }
.bilge-text:nth-child(10) { color: #802887; opacity: 0.52; animation-delay: 2.7s; }
.bilge-text:nth-child(11) { color: #862b8c; opacity: 0.55; animation-delay: 3s; }
.bilge-text:nth-child(12) { color: #8c2e91; opacity: 0.58; animation-delay: 3.3s; }
.bilge-text:nth-child(13) { color: #8e24aa; opacity: 0.61; animation-delay: 3.6s; }
.bilge-text:nth-child(14) { color: #9231a0; opacity: 0.64; animation-delay: 3.9s; }
.bilge-text:nth-child(15) { color: #9834a5; opacity: 0.67; animation-delay: 4.2s; }
.bilge-text:nth-child(16) { color: #9e37aa; opacity: 0.70; animation-delay: 4.5s; }
.bilge-text:nth-child(17) { color: #a43aaf; opacity: 0.73; animation-delay: 4.8s; }
.bilge-text:nth-child(18) { color: #aa3db4; opacity: 0.76; animation-delay: 5.1s; }
.bilge-text:nth-child(19) { color: #b040b9; opacity: 0.79; animation-delay: 5.4s; }
.bilge-text:nth-child(20) { color: #b643be; opacity: 0.82; animation-delay: 5.7s; }

@keyframes float {
  0%, 100% {
    transform: rotate(-2deg) translateX(0) translateY(0);
  }
  25% {
    transform: rotate(-1deg) translateX(5px) translateY(-8px);
  }
  50% {
    transform: rotate(-3deg) translateX(-5px) translateY(0);
  }
  75% {
    transform: rotate(-1.5deg) translateX(3px) translateY(8px);
  }
}

.hero-content {
  z-index: 2;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }
}

.hero-left, .hero-right {
  flex: 1;
}

.hero-center {
  flex: 2;
  text-align: center;
  position: relative;
}

@media (max-width: 992px) {
  .hero-left, .hero-right {
    width: 100%;
  }
}

.hero-brand-bilge-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}

.hero-brand-bilge-pattern .hero-brand-bilge {
  font-size: clamp(40px, 10vw, 80px);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px currentColor;
}

.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(1) { color: #4a0d5a; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(2) { color: #50105f; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(3) { color: #561364; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(4) { color: #5c1669; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(5) { color: #62196e; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(6) { color: #681c73; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(7) { color: #6e1f78; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(8) { color: #74227d; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(9) { color: #7a2582; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(10) { color: #802887; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(11) { color: #862b8c; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(12) { color: #8c2e91; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(13) { color: #8e24aa; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(14) { color: #9231a0; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(15) { color: #9834a5; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(16) { color: #9e37aa; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(17) { color: #a43aaf; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(18) { color: #aa3db4; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(19) { color: #b040b9; }
.hero-brand-bilge-pattern .hero-brand-bilge:nth-child(20) { color: #b643be; }

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  margin: 0 auto;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.hero-brand-main, .hero-brand-sub {
  font-family: var(--font-primary);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-brand-main {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .06em;
  font-size: clamp(42px, 10vw, 85px);
  white-space: nowrap;
}

.hero-brand-bilge {
  color: #8e24aa;
  text-shadow: 0 1px 2px rgba(142, 36, 170, 0.4), 0 0 4px rgba(142, 36, 170, 0.3);
  filter: brightness(0.95);
  text-transform: none;
}

.hero-brand-yazilim {
  color: #8e24aa;
  text-shadow: 0 1px 2px rgba(142, 36, 170, 0.4), 0 0 4px rgba(142, 36, 170, 0.3);
  filter: brightness(0.95);
}

[data-theme=light] .hero-brand-bilge {
  color: #8e24aa;
  text-shadow: 0 1px 2px rgba(142, 36, 170, 0.3), 0 0 3px rgba(142, 36, 170, 0.25);
  filter: brightness(0.98);
}

[data-theme=light] .hero-brand-yazilim {
  color: #8e24aa;
  text-shadow: 0 1px 2px rgba(142, 36, 170, 0.3), 0 0 3px rgba(142, 36, 170, 0.25);
  filter: brightness(0.98);
}

.nav-logo .hero-brand-main {
  font-size: 1.85rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-logo .hero-brand-sub {
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

.nav-logo .hero-brand-bilge,
.nav-logo .hero-brand-yazilim {
  color: #8e24aa;
  text-shadow: 0 1px 1px rgba(142, 36, 170, 0.35);
  filter: brightness(0.95);
}

.nav-logo .hero-brand-yazilim {
  color: #8e24aa;
  text-shadow: 0 1px 1px rgba(142, 36, 170, 0.35);
  filter: brightness(0.95);
}

[data-theme=light] .nav-logo .hero-brand-bilge,
[data-theme=light] .nav-logo .hero-brand-yazilim {
  color: #8e24aa;
  text-shadow: 0 1px 1px rgba(142, 36, 170, 0.25);
  filter: brightness(0.98);
}

[data-theme=light] .nav-logo .hero-brand-yazilim {
  color: #8e24aa;
  text-shadow: 0 1px 1px rgba(142, 36, 170, 0.25);
  filter: brightness(0.98);
}

.hero-brand-sub {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .12em;
  font-size: clamp(26px, 6.5vw, 50px);
  opacity: .95;
  text-align: center;
  width: auto;
  white-space: nowrap;
}

.hero-description {
  font-size: clamp(14px, 2.5vw, 20px);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 3rem;
  margin-bottom: 6rem;
}

.highlight {
  color: var(--accent-green);
  font-weight: 600;
}

.hero-tagline-vertical {
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 2.2;
  max-width: 90%;
  font-family: var(--font-primary);
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .2);
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-tagline-vertical span:first-child {
  display: inline-block;
  margin-right: 10px;
  color: var(--accent-green);
  text-shadow: 0 0 5px rgba(0, 255, 0, .3);
  font-weight: 700;
}

.hero-tagline-vertical span:last-child {
  display: inline-block;
  color: #fff;
  text-shadow: 0 0 3px rgba(255, 255, 255, .2);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.btn-primary, .btn-secondary {
  min-height: 44px;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  font-size: clamp(14px, 1.5vw, 16px);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
  background: var(--accent-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-purple);
}

.btn-secondary:hover {
  background: var(--accent-purple);
  color: #fff;
  transform: translateY(-2px);
}

.btn-services {
  padding: 10px 20px;
  min-width: auto;
  width: 320px;
  max-width: 320px;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.3;
}

.btn-quote {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 10px 20px;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.3;
  display: block;
  width: 320px;
  max-width: 320px;
  box-shadow: 0 0 15px var(--accent-green);
  animation: 2s infinite alternate pulsateGreen;
}

@keyframes pulsateGreen {
  0%, 100% {
    box-shadow: 0 0 5px var(--accent-green);
  }
  50% {
    box-shadow: 0 0 15px var(--accent-green), 0 0 20px var(--accent-green);
  }
}

.btn-quote span {
  font-size: 0.8rem;
  display: block;
  font-weight: 400;
  opacity: .9;
}

.btn-quote:hover {
  background: rgba(0, 255, 0, .1);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: var(--accent-green);
}

.trust-badges-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: flex-start;
}

@media (max-width: 576px) {
  .trust-badges-vertical {
    gap: 1rem;
    align-items: center;
    width: 100%;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-size: 1rem;
}

.trust-badge i {
  color: var(--accent-green);
  font-size: 1.1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: 2s infinite bounce;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent-purple);
  border-bottom: 2px solid var(--accent-purple);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Services Section */
section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
  position: relative;
}

.services .section-title {
  color: var(--accent-purple);
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-purple);
}

.services {
  background: linear-gradient(135deg, #1a1a1a 0, #0a0a0a 50%, #2a2a2a 100%);
  position: relative;
  padding-top: 160px;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(157, 78, 221, .02) 0, rgba(0, 0, 0, .1) 100%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 2rem;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: rgba(255, 255, 255, .05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: .3s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(157, 78, 221, .1), transparent);
  transition: left .6s ease-in-out;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px var(--shadow-color);
  border-color: var(--accent-purple);
  background: rgba(255, 255, 255, .08);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #fff;
}

.service-card h3 {
  font-size: clamp(1.1rem, 2.7vw, 1.4rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card li {
  color: var(--text-secondary);
  margin-bottom: .5rem;
  position: relative;
  padding-left: 20px;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.service-card li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-size: .8rem;
  line-height: 1;
}

.service-card h4 {
  font-size: clamp(1.1rem, 2.7vw, 1.4rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
}

/* Service Categories */
.service-category {
  margin-bottom: 4rem;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-category-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service-category-title i {
  color: var(--accent-purple);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.service-category-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  background: linear-gradient(135deg, #0a0a0a 0, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(157, 78, 221, .02) 0, rgba(0, 0, 0, .1) 100%);
  pointer-events: none;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-item {
  background: rgba(255, 255, 255, .05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-color);
  border-color: var(--accent-purple);
  background: rgba(255, 255, 255, .08);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-secondary) 0, var(--bg-tertiary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder {
  font-size: 4rem;
  color: var(--accent-purple);
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.portfolio-item:hover .portfolio-placeholder {
  opacity: 1;
  transform: scale(1.1);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
}

.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.6;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(142, 36, 170, 0.2);
  color: var(--accent-purple);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(142, 36, 170, 0.3);
  transition: all var(--transition-fast);
}

.portfolio-item:hover .tag {
  background: rgba(142, 36, 170, 0.3);
  border-color: var(--accent-purple);
}

[data-theme=light] .portfolio-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
}

[data-theme=light] .portfolio-image {
  background: linear-gradient(135deg, var(--bg-secondary) 0, var(--bg-tertiary) 100%);
}

[data-theme=light] .portfolio-content h3 {
  color: var(--text-primary);
}

[data-theme=light] .portfolio-content p {
  color: var(--text-secondary);
}

[data-theme=light] .tag {
  background: rgba(142, 36, 170, 0.15);
  border-color: rgba(142, 36, 170, 0.3);
}

[data-theme=light] .portfolio {
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(248, 249, 250, .95) 50%, rgba(255, 255, 255, .95) 100%);
}

[data-theme=light] .portfolio::before {
  background: linear-gradient(45deg, rgba(157, 78, 221, .02) 0, rgba(255, 255, 255, .1) 100%);
}

/* About Section */
.about {
  background: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 0.85fr 0.9fr 1.4fr;
  gap: 5rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-primary);
}

.about-main-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: .3px;
  max-width: 95%;
  margin: 0;
}

.workflow-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.workflow-steps {
  margin-top: 0;
  margin-bottom: 0;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  color: var(--accent-purple);
  font-size: 1.4rem;
  line-height: 1;
  min-width: 1.4rem;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-primary);
}

.step-content {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  align-items: baseline;
}

.step-content strong {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 700;
  font-family: var(--font-primary);
}

.step-desc {
  color: var(--text-secondary);
  font-size: .95rem;
}

.about-visual {
  margin-top: 0;
}

.terminal-window {
  background: #1e1e1e;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  border: 1px solid #333;
  overflow: hidden;
}

.terminal-header {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0e0f10;
  border-bottom: 1px solid #111;
  height: 28px;
}

.terminal-tab {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.terminal-title {
  color: #d8d8d8;
  font-size: .92em;
  font-weight: 400;
  font-family: 'Ubuntu Mono', 'Courier New', monospace;
}

.terminal-controls {
  display: flex;
  align-items: center;
}

.terminal-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.terminal-btn:hover {
  background-color: rgba(255, 255, 255, .1);
}

.terminal-btn.close:hover {
  background-color: #e81123;
  color: #fff;
}

.terminal-body {
  background: #0e0f10;
  padding: 1.5rem;
  color: #d8d8d8;
  position: relative;
  font-family: 'Ubuntu Mono', 'Courier New', monospace;
  font-size: .95rem;
  line-height: 1.4;
}

.terminal-line {
  opacity: 0;
  animation: .1s forwards typewriter;
  margin-bottom: .5rem;
}

@keyframes typewriter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.terminal-line:first-child {
  animation-delay: .1s;
}

.terminal-line:nth-child(2) {
  animation-delay: .5s;
}

.terminal-line:nth-child(3) {
  animation-delay: .9s;
}

.terminal-line:nth-child(4) {
  animation-delay: 1.3s;
}

.terminal-line:nth-child(5) {
  animation-delay: 1.7s;
}

.terminal-line:nth-child(6) {
  animation-delay: 2.1s;
}

.terminal-line:nth-child(7) {
  animation-delay: 2.5s;
}

.terminal-line:nth-child(8) {
  animation-delay: 2.9s;
}

.terminal-line:nth-child(9) {
  animation-delay: 3.3s;
}

.terminal-line:nth-child(10) {
  animation-delay: 3.7s;
}

.green {
  color: #16ea5e;
}

.yellow {
  color: #ffc04d;
}

.red {
  color: #ff4d4d;
}

.white {
  color: #c9c9c9;
}

.bullet {
  color: #c9c9c9;
  margin-right: 5px;
}

.command {
  color: #fff;
  margin-left: 5px;
}

.terminal-blink {
  animation: 1s infinite blink;
}

@keyframes blink {
  0%, 100%, 50% {
    opacity: 1;
  }
  100%, 50%, 51% {
    opacity: 0;
  }
}

/* Contact Section */
.contact {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
}

.contact .section-title {
  position: relative;
  margin-bottom: 3rem;
}

.contact .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-purple);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  margin-top: 10px;
  color: var(--text-primary);
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.contact-item i {
  color: var(--accent-purple);
  font-size: 1.2rem;
  width: 24px;
  margin-top: 3px;
}

.contact-cta {
  background: linear-gradient(135deg, #0a0a0a 0, #1a1a1a 25%, #0d0d0d 50%, #1a1a1a 75%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
}

.contact-cta h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  font-family: var(--font-primary);
  margin-top: 0;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.contact-buttons .btn-primary {
  width: 100%;
  max-width: 320px;
  font-size: clamp(14px, 2vw, 16px);
  padding: 14px 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  min-height: 50px;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-links {
    justify-content: center;
  }
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-purple);
  color: #fff;
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 1rem;
  color: var(--text-secondary);
  font-size: .9rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

/* Light Theme Adjustments */
[data-theme=light] .about,
[data-theme=light] .contact,
[data-theme=light] .services {
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(248, 249, 250, .95) 50%, rgba(255, 255, 255, .95) 100%);
  backdrop-filter: blur(10px);
}

[data-theme=light] .contact-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0, rgba(248, 249, 250, 0.95) 25%, rgba(255, 255, 255, 0.95) 50%, rgba(248, 249, 250, 0.95) 75%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme=light] .service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
}

[data-theme=light] .service-card h3 {
  color: var(--text-primary);
}

[data-theme=light] .service-card p,
[data-theme=light] .service-card li {
  color: var(--text-secondary);
}

[data-theme=light] .hero {
  background: linear-gradient(135deg, #d0d0d0 0%, #d5d5d5 50%, #d2d2d2 100%);
}

[data-theme=light] .hero-background {
  opacity: 0.05;
}

[data-theme=light] .hero-description {
  color: var(--text-secondary);
}

[data-theme=light] .hero-description .highlight {
  color: #00cc44;
}

[data-theme=light] .btn-quote {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-green);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

[data-theme=light] .btn-quote:hover {
  background: rgba(0, 255, 0, .1);
  color: var(--text-primary);
  border-color: var(--accent-green);
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  
  .services {
    padding: 100px 0 50px 0;
  }
  
  .hero {
    min-height: calc(100vh - var(--nav-height));
    padding: 6px 16px 26px;
  }
  
  .hero-brand-main {
    font-size: clamp(52px, 13vw, 72px);
  }
  
  .hero-brand-sub {
    font-size: clamp(20px, 5.2vw, 28px);
  }
  
  .services-grid {
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4px 12px 20px;
  }
  
  .services {
    padding: 80px 0 40px 0;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .nav-container {
    height: 60px;
  }
  
  .nav-logo .hero-brand-main {
    font-size: 1.5rem;
  }
  
  .nav-logo .hero-brand-sub {
    font-size: 0.9rem;
  }
}

/* Service Header (for contact page) */
.service-header {
  padding: 120px 0 40px;
  background: linear-gradient(135deg, #0a0a0a 0, #1a1a1a 50%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border-color);
}

.service-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent-purple);
  text-align: center;
  margin-bottom: 1rem;
}

.service-breadcrumb {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-breadcrumb a {
  color: var(--accent-purple);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.service-breadcrumb a:hover {
  color: var(--accent-purple-light);
}

.service-breadcrumb span {
  color: var(--text-secondary);
}

/* Contact Page */
.contact-page {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a0a0a 0, #1a1a1a 25%, #0d0d0d 50%, #1a1a1a 75%, #0a0a0a 100%);
  position: relative;
}

.contact-page-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .contact-page-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-form-container {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  min-width: 0;
}

.contact-form-container h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.contact-page-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-page-form label {
  display: block;
  margin-bottom: .5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-secondary);
  transition: border-color var(--transition-fast);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  outline: 0;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 2px rgba(142, 36, 170, .1);
}

.contact-page-form textarea {
  min-height: 150px;
  height: 150px;
  resize: vertical;
  max-height: 300px;
}

.char-count {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.contact-form-actions {
  margin-top: 2rem;
}

.contact-form-actions .btn-primary {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.form-message.is-visible {
  display: flex;
}

.loading-message {
  background: rgba(142, 36, 170, .1);
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple);
}

.form-message.success-message {
  background: rgba(0, 255, 0, .1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}

.form-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-page-info h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-page-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-help-note {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
}

.help-note-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.help-note-content h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.help-note-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 0.75rem 0;
}

.contact-info-box {
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: var(--accent-purple);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transition: .3s ease-in-out;
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(142, 36, 170, .3);
  border-color: var(--accent-purple);
}

.contact-text h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--text-primary);
}

.contact-text p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

[data-theme=light] .contact-form-container,
[data-theme=light] .contact-help-note {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
}

[data-theme=light] .contact-page-form input,
[data-theme=light] .contact-page-form textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
}

[data-theme=light] .contact-icon {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .service-header {
    padding: 100px 0 30px;
  }
  
  .contact-page {
    padding: 40px 0;
  }
  
  .contact-form-container,
  .contact-help-note {
    padding: 1.5rem;
  }
}

/* Hizmet kartı alt teslimat satırı */
.service-deliverable {
  margin-top: 14px;
  font-size: 0.95rem;
  opacity: 0.9;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-deliverable strong {
  color: var(--accent-purple);
  font-weight: 600;
}

.service-note {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.4;
}

.services-footer-note {
  margin-top: 48px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  text-align: center;
  opacity: 0.75;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.services-footer-note strong {
  color: var(--accent-purple);
  font-weight: 600;
}

[data-theme=light] .service-deliverable,
[data-theme=light] .service-note,
[data-theme=light] .services-footer-note {
  color: var(--text-secondary);
}

[data-theme=light] .services-footer-note {
  background: rgba(0, 0, 0, .03);
  border: 1px solid var(--border-color);
}

