@charset "UTF-8";
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-color: rgba(15, 23, 42, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --primary-color: #00d4ff;
  --secondary-color: #0099cc;
  --accent-color: #ff0080;
  --highlight-color: #ffff00;
  --success-color: #00ff88;
  --warning-color: #ff8800;
  --error-color: #ff4466;
  --primary-color-rgb: 0, 212, 255;
  --accent-color-rgb: 255, 0, 128;
}

[data-theme=dark] {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --primary-color: #00d4ff;
  --secondary-color: #0099cc;
  --accent-color: #ff0080;
  --highlight-color: #ffff00;
  --success-color: #00ff88;
  --warning-color: #ff8800;
  --error-color: #ff4466;
  --primary-color-rgb: 0, 212, 255;
  --accent-color-rgb: 255, 0, 128;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.875rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin: 0 0 1rem 0;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.15s ease;
}
a:hover {
  color: #0099cc;
  text-decoration: underline;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

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

code {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.875em;
  background-color: var(--bg-tertiary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

pre {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 0 0 1rem 0;
}
pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem 0;
}

th, td {
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

th {
  font-weight: 600;
  background-color: var(--bg-secondary);
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

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

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

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 32px var(--shadow-color);
  transition: all 0.3s ease;
}

.main-nav {
  padding: 1rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.logo:hover {
  text-decoration: none;
  color: #00d4ff;
  transform: translateY(-1px);
}
.logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo .logo-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.theme-toggle {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
}
.theme-toggle:hover {
  border-color: #00d4ff;
  transform: rotate(180deg);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.theme-toggle .theme-icon {
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.theme-toggle .sun-icon {
  display: block;
}
.theme-toggle .moon-icon {
  display: none;
}

[data-theme=dark] .theme-toggle .sun-icon {
  display: none;
}
[data-theme=dark] .theme-toggle .moon-icon {
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: all 0.15s ease;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    display: flex;
  }
}
.nav-menu li {
  margin: 0;
}
.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #00d4ff;
  background-color: var(--bg-secondary);
  text-decoration: none;
}

main {
  min-height: calc(100vh - 200px);
}

.page-content {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .page-content {
    padding: 3rem 0;
  }
}

.page-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.page-hero h1 {
  margin-bottom: 1rem;
}
.page-hero .hero-subtitle {
  font-size: 20px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 3rem;
}
.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-body {
  max-width: 800px;
}
.page-body h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #00d4ff;
  padding-bottom: 0.5rem;
}
.page-body h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.service-content {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .service-content {
    padding: 3rem 0;
  }
}

.service-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.service-hero h1 {
  margin-bottom: 1rem;
}
.service-hero .service-subtitle {
  font-size: 20px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.service-details {
  max-width: 900px;
  margin: 0 auto;
}

.service-body {
  margin-bottom: 4rem;
}
.service-body h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #ff0080;
  padding-bottom: 0.5rem;
}
.service-body h2:first-child {
  margin-top: 0;
}
.service-body h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.service-benefits {
  background-color: var(--bg-secondary);
  padding: 3rem;
  border-radius: 0.75rem;
  margin-bottom: 4rem;
}
.service-benefits h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  border-bottom: none;
  padding-bottom: 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: 700;
  font-size: 1.25rem;
}

.site-footer {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 4rem 0 1.5rem 0;
  margin-top: 8rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  color: var(--text-muted);
  transition: all 0.15s ease;
}
.social-links a:hover {
  color: #ff0080;
  text-decoration: none;
}
.social-links a svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 0.5rem;
}
.footer-column a {
  color: var(--text-secondary);
  font-size: 14px;
}
.footer-column a:hover {
  color: #ff0080;
  text-decoration: none;
}

.footer-cta p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.footer-cta .footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-cta .footer-buttons .btn {
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.footer-cta .footer-buttons .btn.btn-sm {
  padding: 0.25rem 1rem;
}
.footer-cta .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-cta .footer-social a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-cta .footer-social a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
.footer-bottom p.footer-tagline {
  font-weight: 500;
  color: var(--accent-color);
}

a {
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.15s ease;
}
a:hover {
  color: #0099cc;
  text-decoration: underline;
}
a:focus {
  color: #0099cc;
  outline: 2px solid rgba(0, 212, 255, 0.3);
  outline-offset: 2px;
}
a:active {
  color: #ff0080;
}

p a,
.content a,
.text-content a {
  color: #00d4ff;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}
p a:hover,
.content a:hover,
.text-content a:hover {
  color: #0099cc;
  border-bottom-color: #0099cc;
  background-color: rgba(0, 212, 255, 0.1);
  padding: 2px 4px;
  border-radius: 0.25rem;
}

.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.chat-widget a {
  color: var(--text-primary) !important;
  text-decoration: none !important;
}
.chat-widget a:hover {
  color: var(--text-primary) !important;
  text-decoration: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
}
.chat-widget * {
  color: inherit;
}
.chat-widget *:hover {
  color: inherit !important;
}
.chat-widget .message-content {
  color: var(--text-primary);
}
.chat-widget .message-content a {
  color: #00d4ff;
}
.chat-widget .message-content a:hover {
  color: #0099cc;
  background-color: rgba(0, 212, 255, 0.1);
  padding: 2px 4px;
  border-radius: 0.25rem;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(var(--primary-color-rgb), 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.chat-toggle::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 ease;
}
.chat-toggle:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 40px rgba(var(--primary-color-rgb), 0.4);
}
.chat-toggle:hover::before {
  left: 100%;
}
.chat-toggle:active {
  transform: translateY(0) scale(0.95);
}
.chat-toggle .chat-icon, .chat-toggle .close-icon {
  z-index: 2;
  position: relative;
  pointer-events: none;
  transition: all 0.3s ease;
}
.chat-toggle .close-icon {
  color: white;
  stroke-width: 2.5;
}
@media (max-width: 768px) {
  .chat-toggle {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .chat-toggle .chat-icon, .chat-toggle .close-icon {
    width: 22px;
    height: 22px;
  }
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  height: 500px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.3s ease-out;
}
@media (max-width: 480px) {
  .chat-window {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    height: auto;
    border-radius: 20px;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.chat-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.chat-header .chat-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.chat-header .chat-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.chat-header .chat-close:active {
  transform: scale(0.95);
}

.chat-avatar .avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.chat-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.chat-title p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-messages::-webkit-scrollbar {
  width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 2px;
}

.message {
  display: flex;
  flex-direction: column;
  animation: messageSlideIn 0.3s ease-out;
}
.message.user-message {
  align-items: flex-end;
}
.message.user-message .message-content {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 18px 18px 4px 18px;
  max-width: 80%;
}
.message.bot-message {
  align-items: flex-start;
}
.message.bot-message .message-content {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 18px 18px 18px 4px;
  max-width: 85%;
}
.message.typing .message-content {
  padding: 12px 16px;
}

.chat-input-form {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.chat-input-container {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 14px;
  resize: none;
  min-height: 20px;
  max-height: 100px;
  background: var(--bg-primary);
  color: var(--text-primary);
}
.chat-input:focus {
  outline: none;
  border-color: var(--accent-color);
}
.chat-input::placeholder {
  color: var(--text-muted);
}

.chat-send {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.chat-send:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}
.chat-send:active:not(:disabled) {
  transform: scale(0.95);
}
.chat-send:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.chat-send:disabled svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.contact-collection {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 212, 255, 0.02) 100%);
  border-radius: 0 0 20px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}
.contact-header .contact-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--text-muted);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.contact-header .contact-close:hover {
  background: var(--text-primary);
  transform: scale(1.1);
}
.contact-header .contact-close:active {
  transform: scale(0.95);
}
.contact-header .emoji-wave {
  font-size: 2rem;
  margin-bottom: 12px;
  animation: wave 2s ease-in-out infinite;
}
.contact-header h4 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.contact-header p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}
.contact-details-form .form-group {
  margin-bottom: 12px;
}
.contact-details-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
}
.contact-details-form .form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
}
.contact-details-form .form-group input::placeholder {
  color: var(--text-muted);
}
.contact-details-form .form-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.contact-details-form .form-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-details-form .form-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}
.contact-details-form .form-actions .btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-details-form .form-actions .btn-secondary:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.message-content {
  padding: 12px 16px;
}
.message-content p {
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}
.message-content strong {
  font-weight: 700;
}
.message-content a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
  text-underline-offset: 2px;
  transition: all 0.2s ease;
  font-weight: 500;
}
.message-content a:hover {
  color: var(--accent-color);
  text-decoration-color: var(--primary-color);
  background-color: rgba(var(--accent-color-rgb), 0.1);
  padding: 1px 3px;
  border-radius: 3px;
}
.message-content a:visited {
  color: var(--text-secondary);
  text-decoration-color: var(--text-muted);
}
.user-message .message-content a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: rgba(255, 255, 255, 0.6);
}
.user-message .message-content a:hover {
  color: white;
  text-decoration-color: white;
  background-color: rgba(255, 255, 255, 0.2);
}
.message-content code {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 2px 4px;
  border-radius: 3px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 13px;
}
.message-content pre {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px;
  margin: 8px 0;
  overflow-x: auto;
}
.message-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}
.message-content ul, .message-content ol {
  margin: 8px 0;
  padding-left: 20px;
}
.message-content ul li, .message-content ol li {
  margin: 4px 0;
  line-height: 1.4;
}

.quick-questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.quick-question {
  background: var(--bg-secondary);
  border: 1px solid var(--accent-color);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.quick-question:hover {
  background: var(--accent-color);
  color: var(--bg-primary);
  transform: translateX(4px);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
}
.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  animation: typingDot 1.4s infinite ease-in-out;
}
.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}
.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: 0;
}

@keyframes typingDot {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.chat-input-form {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.chat-input-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}
.chat-input::placeholder {
  color: var(--text-secondary);
}
.chat-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}

.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.chat-send:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(var(--primary-color-rgb), 0.3);
}
.chat-send:active {
  transform: scale(0.95);
}
.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.blog-search {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--accent-color);
  border-radius: 25px 0 0 25px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.search-input::placeholder {
  color: var(--text-secondary);
}
.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-color-alpha);
}

.search-button {
  padding: 0.75rem 1rem;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-left: none;
  border-radius: 0 25px 25px 0;
  color: var(--bg-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.search-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-1px);
}
.search-button svg {
  width: 20px;
  height: 20px;
}

.no-search-results {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-secondary);
}
.no-search-results h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.no-search-results p {
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.btn::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 ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}
.btn:hover::before {
  left: 100%;
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  border: 2px solid #00d4ff;
  position: relative;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0099cc, #00d4ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: -1;
}
.btn-primary:hover {
  color: white;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}
.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
  position: relative;
}
.btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: -1;
}
.btn-secondary:hover {
  color: white;
  border-color: transparent;
}
.btn-secondary:hover::after {
  opacity: 1;
}

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

.hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 4rem 0;
  }
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero.hero-centered .container {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero.hero-centered .container .hero-content {
  max-width: 800px;
}

@media (max-width: 1024px) {
  .hero-content {
    order: 2;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, var(--text-primary) 50%, #ff0080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
.hero-title .highlight {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  border-radius: 2px;
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .hero-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-visual {
    order: 1;
    margin-bottom: 2rem;
  }
}

.ai-human-graphic {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.ai-human-graphic .ai-side,
.ai-human-graphic .human-side {
  text-align: center;
  padding: 2rem;
  background: var(--bg-primary);
  border: 3px solid rgba(0, 212, 255, 0.3);
  border-radius: 1rem;
  backdrop-filter: blur(20px);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px var(--shadow-color), 0 0 0 1px rgba(0, 212, 255, 0.1);
}
.ai-human-graphic .ai-side:hover,
.ai-human-graphic .human-side:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
}
.ai-human-graphic .ai-side::before,
.ai-human-graphic .human-side::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  border-radius: 1rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ai-human-graphic .ai-side:hover::before,
.ai-human-graphic .human-side:hover::before {
  opacity: 0.3;
}
.ai-human-graphic .ai-side span,
.ai-human-graphic .human-side span {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
}
.ai-human-graphic .ai-side small,
.ai-human-graphic .human-side small {
  font-size: 0.875rem;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.ai-human-graphic .ai-side small {
  color: #00d4ff;
}
.ai-human-graphic .human-side small {
  color: #ff0080;
}
.ai-human-graphic .connection {
  font-size: 2rem;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  animation: pulse 2s infinite;
}

.value-proposition {
  padding: 8rem 0;
  background: var(--bg-secondary);
}
@media (max-width: 768px) {
  .value-proposition {
    padding: 6rem 0;
  }
}
.value-proposition h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
}

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

.value-card {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
}
.value-card .value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.value-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.value-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.services-preview {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .services-preview {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-preview {
  padding: 2rem;
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.service-preview:hover {
  border-color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.service-preview.featured {
  background: linear-gradient(135deg, #ff0080, #ff3399);
  color: var(--bg-primary);
  border-color: #ff0080;
}
.service-preview.featured h3, .service-preview.featured p {
  color: var(--bg-primary);
}
.service-preview.featured .service-link {
  color: var(--bg-primary);
  border-bottom-color: rgba(var(--bg-primary), 0.5);
}
.service-preview.featured .service-link:hover {
  border-bottom-color: var(--bg-primary);
}
.service-preview h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}
.service-preview p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.service-preview .service-link {
  font-weight: 600;
  color: #00d4ff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
}
.service-preview .service-link:hover {
  border-bottom-color: #00d4ff;
}

.innovation-showcase {
  padding: 8rem 0;
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
@media (max-width: 768px) {
  .innovation-showcase {
    padding: 6rem 0;
  }
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .showcase-content {
    grid-template-columns: 1fr;
  }
}

.showcase-text h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.showcase-text p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 2rem;
}

.innovation-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.innovation-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
}
.innovation-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff0080;
  font-weight: 700;
}

.showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.riddlen-preview {
  text-align: center;
  padding: 4rem;
  background: linear-gradient(135deg, #ff0080, #ff3399);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.riddlen-preview h4 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--bg-primary);
}
.riddlen-preview p {
  color: rgba(var(--bg-primary), 0.9);
  margin: 0;
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffff00, #cccc00);
  color: var(--bg-primary);
  text-align: center;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }
}
.cta-section h2 {
  color: var(--bg-primary);
  margin-bottom: 1rem;
  font-size: 2.25rem;
}
.cta-section p {
  font-size: 18px;
  color: rgba(var(--bg-primary), 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-primary {
  background-color: var(--bg-primary);
  color: #ffff00;
  border-color: var(--bg-primary);
}
.cta-section .btn-primary:hover {
  background-color: rgba(var(--bg-primary), 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-header {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
  padding: 6rem 0 4rem 0;
  text-align: center;
  position: relative;
}
.blog-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(255, 0, 128, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.blog-title {
  font-size: 3rem;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .blog-title {
    font-size: 2.5rem;
  }
}

.blog-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0;
}

.blog-content {
  padding: 4rem 0;
  overflow-x: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .blog-grid .blog-posts {
    order: 1;
  }
  .blog-grid .blog-sidebar {
    order: 2;
  }
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
  max-width: 100%;
}

.blog-post-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .blog-post-card {
    padding: 1.5rem;
  }
}
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px var(--shadow-color);
  border-color: #00d4ff;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 14px;
  color: var(--text-muted);
}

.post-date {
  color: var(--text-muted);
}

.post-categories {
  display: flex;
  gap: 0.5rem;
}

.category,
.tag {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.category:hover,
.tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
  text-decoration: none;
  color: white;
}

.tag-filter-controls {
  margin-bottom: 3rem;
}
.tag-filter-controls h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tag-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-filter-btn {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tag-filter-btn:hover {
  background: var(--bg-tertiary);
  border-color: #00d4ff;
  color: var(--text-primary);
}
.tag-filter-btn.active {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  color: white;
  border-color: transparent;
}

.tag-clickable {
  cursor: pointer;
}
.tag-clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.category-list a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.25rem 0;
  display: block;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.category-list a:hover {
  color: #00d4ff;
  border-bottom-color: #00d4ff;
  padding-left: 0.5rem;
}
.category-list a.active {
  color: #00d4ff;
  font-weight: 600;
}

.post-title {
  margin-bottom: 1rem;
}
.post-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-title a:hover {
  color: #00d4ff;
}

.post-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.read-time {
  font-size: 14px;
  color: var(--text-muted);
}

.read-more {
  color: #00d4ff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more:hover {
  color: #ff0080;
  transform: translateX(4px);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .blog-sidebar {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .blog-sidebar .sidebar-widget:nth-child(2) {
    display: none !important;
  }
  .blog-sidebar .rss-feed,
  .blog-sidebar .feed-widget,
  .blog-sidebar .subscribe-widget,
  .blog-sidebar .sidebar-widget:has([href*="feed.xml"]),
  .blog-sidebar .sidebar-widget:has([href*=rss]),
  .blog-sidebar [href*="feed.xml"],
  .blog-sidebar [href*=rss] {
    display: none !important;
  }
}

.sidebar-widget {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .sidebar-widget {
    padding: 1.5rem;
  }
}
.sidebar-widget h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li {
  margin-bottom: 0.5rem;
}
.category-list li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.category-list li a:hover {
  color: #00d4ff;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-cloud .tag {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-size: 0.75rem;
  transition: all 0.3s ease;
}
.tag-cloud .tag:hover {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  color: white;
}

.blog-preview {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  .blog-preview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.blog-preview-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px var(--shadow-color);
}
.blog-preview-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blog-preview-card h3 a {
  color: var(--text-primary);
  text-decoration: none;
}
.blog-preview-card h3 a:hover {
  color: #00d4ff;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 14px;
}
.blog-meta time {
  color: var(--text-muted);
}

.blog-category {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-cta {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
}
.blog-cta h3 {
  color: white;
  margin-bottom: 1rem;
}
.blog-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.blog-cta .btn {
  background: white;
  color: #00d4ff;
  border-color: white;
}
.blog-cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.no-posts {
  text-align: center;
  padding: 4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  backdrop-filter: blur(20px);
}
.no-posts h2 {
  color: #00d4ff;
  margin-bottom: 1.5rem;
}
.no-posts ul {
  text-align: left;
  max-width: 400px;
  margin: 2rem auto;
}

.blog-post {
  padding: 4rem 0;
}

.post-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.post-content {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  line-height: 1.8;
}
.post-content h2 {
  margin-top: 3rem;
  color: #00d4ff;
}
.post-content h3 {
  margin-top: 2rem;
  color: #ff0080;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.post-tags .tags-label {
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 0.5rem;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.post-share .share-label {
  font-weight: 600;
  color: var(--text-secondary);
}
.post-share .share-link {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.post-share .share-link:hover {
  color: #ff0080;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 768px) {
  .post-navigation {
    grid-template-columns: 1fr;
  }
}
.post-navigation .nav-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-navigation .nav-link {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}
.post-navigation .nav-link:hover {
  color: #00d4ff;
}
.post-navigation .nav-next {
  text-align: right;
}
@media (max-width: 768px) {
  .post-navigation .nav-next {
    text-align: left;
  }
}

.post-cta {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(20px);
}
.post-cta h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}
.post-cta p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.services-overview {
  padding: 3rem 0;
  text-align: center;
}

.services-grid-section {
  padding: 4rem 0;
}

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

.service-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--shadow-color);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-color);
  border-color: #00d4ff;
}
.service-card.featured {
  border-color: #00d4ff;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}
.service-card.featured .service-icon {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-card.innovation {
  border-color: #ff0080;
}
.service-card.innovation .service-icon {
  color: #ff0080;
}
.service-card .service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-card .btn {
  margin-top: 1rem;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.highlight-item {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.why-choose-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.consultation-process {
  padding: 6rem 0;
}

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

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--bg-primary);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-color);
}
.process-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
}
.process-step h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.process-step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
}
.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.service-hero .container {
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
  }
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  backdrop-filter: blur(20px);
  min-width: 120px;
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: all 0.3s ease;
}
.stat:hover {
  transform: translateY(-2px);
  border-color: #00d4ff;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.story-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}
.story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-color);
}
.story-card.featured {
  border-color: #00d4ff;
  position: relative;
}
.story-card.featured::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  border-radius: 1rem;
  z-index: -1;
  opacity: 0.1;
}

.story-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 14px;
  flex-wrap: wrap;
}

.company {
  color: #00d4ff;
  font-weight: 600;
}

.challenge {
  color: var(--text-muted);
}

.story-text ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.story-text li {
  margin-bottom: 0.5rem;
}

.roi-highlight {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
}

.how-it-works {
  padding: 6rem 0;
}

.workflow-steps {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}

.workflow-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .workflow-step {
    flex-direction: column;
    text-align: center;
  }
}

.step-visual {
  font-size: 3rem;
  flex-shrink: 0;
}

.step-detail {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  font-size: 14px;
  line-height: 1.6;
}

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

.automation-item {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--shadow-color);
}
.automation-item:hover {
  border-color: #00d4ff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-color);
}
.automation-item h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.automation-item p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 14px;
}
.automation-item p:last-child {
  margin-bottom: 0;
}

.implementation-timeline {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.timeline {
  position: relative;
  margin-top: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
}
@media (max-width: 768px) {
  .timeline::before {
    display: none;
  }
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
}

.timeline-marker {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
  margin-right: 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .timeline-marker {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

.timeline-content {
  flex: 1;
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
}
.timeline-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.common-automations {
  padding: 6rem 0;
}

.marketing-types,
.ai-applications {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-form {
  max-width: 600px;
  margin: 3rem 0;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 16px;
  transition: all 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .contact-form .btn {
    width: auto;
  }
}

.riddlen-workflow .workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.riddlen-workflow .workflow-step {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05) 0%, rgba(var(--accent-color-rgb), 0.05) 100%);
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.riddlen-workflow .workflow-step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00d4ff, #ff0080, #00d4ff);
  border-radius: 1rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.riddlen-workflow .workflow-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 30%);
  pointer-events: none;
}
.riddlen-workflow .workflow-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(var(--primary-color-rgb), 0.2), 0 0 60px rgba(var(--accent-color-rgb), 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.6);
}
.riddlen-workflow .workflow-step:hover::before {
  opacity: 1;
}
.riddlen-workflow .workflow-step:hover .step-visual {
  transform: scale(1.2) rotate(360deg);
  text-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.8);
}
.riddlen-workflow .step-visual {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.6s ease;
  filter: drop-shadow(0 4px 8px rgba(var(--primary-color-rgb), 0.3));
}
.riddlen-workflow .step-content h3 {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 700;
}
.riddlen-workflow .step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.riddlen-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.riddlen-features .feature-card {
  background: var(--bg-primary);
  border: 2px solid transparent;
  border-radius: 1rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background-clip: padding-box;
}
.riddlen-features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 0, 128, 0.3), rgba(0, 212, 255, 0.3));
  border-radius: 1rem;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.riddlen-features .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(var(--shadow-color), 0.3), 0 0 40px rgba(var(--primary-color-rgb), 0.1);
}
.riddlen-features .feature-card:hover::before {
  opacity: 1;
}
.riddlen-features .feature-card:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(var(--primary-color-rgb), 0.6));
}
.riddlen-features .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.3s ease;
}
.riddlen-features .feature-title {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tech-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.tech-stats .stat-card {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--accent-color-rgb), 0.1) 100%);
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
.tech-stats .stat-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 212, 255, 0.1) 90deg, transparent 180deg, rgba(255, 0, 128, 0.1) 270deg, transparent 360deg);
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}
.tech-stats .stat-card:hover {
  transform: scale(1.05);
  border-color: rgba(var(--primary-color-rgb), 0.6);
  box-shadow: 0 8px 32px rgba(var(--primary-color-rgb), 0.2);
}
.tech-stats .stat-card:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(360deg);
}
.tech-stats .stat-card:hover .stat-number {
  text-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.8);
}
.tech-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.tech-stats .stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.result-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--shadow-color);
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-color);
  border-color: #00d4ff;
}
.result-card .result-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.result-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.result-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.getting-started {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.story-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}
.story-section .story-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}
.story-section .story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-color);
}
.story-section .story-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 18px;
}
.story-section .story-card p:last-child {
  margin-bottom: 0;
}

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

.tech-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--shadow-color);
}
.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-color);
  border-color: #ff0080;
}
.tech-card .tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.tech-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.tech-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.getting-started {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.story-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}
.story-section .story-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}
.story-section .story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-color);
}
.story-section .story-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 18px;
}
.story-section .story-card p:last-child {
  margin-bottom: 0;
}

.pagination-wrapper {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
}
.pagination-wrapper.pagination-minimal {
  border-top: none;
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.pagination-wrapper.pagination-compact {
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.pagination-wrapper.pagination-centered .pagination {
  justify-content: center;
}
@media (min-width: 768px) {
  .pagination-wrapper.pagination-centered .pagination {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.pagination {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pagination {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.pagination.pagination-simple .pagination-numbers {
  display: none;
}
.pagination.pagination-numbers-only .pagination-btn {
  display: none;
}
.pagination.pagination-numbers-only .pagination-controls {
  justify-content: center;
}

.pagination-info .pagination-summary {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}
.pagination-info .pagination-results {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .pagination-controls {
    justify-content: flex-end;
  }
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}
.pagination-btn:hover {
  border-color: #00d4ff;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
}
.pagination-btn.pagination-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--bg-tertiary);
  color: var(--text-muted);
}
.pagination-btn.pagination-disabled:hover {
  border-color: var(--border-color);
  color: var(--text-muted);
  background: var(--bg-tertiary);
  transform: none;
  box-shadow: none;
}
.pagination-btn.pagination-btn-large {
  padding: 1rem 1.5rem;
  font-size: 18px;
}
.pagination-btn.pagination-btn-small {
  padding: 0.25rem 0.5rem;
  font-size: 14px;
  min-height: 36px;
}
.pagination-btn .pagination-arrow {
  font-weight: 700;
  font-size: 1.1em;
}
@media (max-width: 640px) {
  .pagination-btn .pagination-text {
    display: none;
  }
}
@media (max-width: 640px) {
  .pagination-btn.pagination-btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }
  .pagination-btn.pagination-btn-icon .pagination-text {
    display: none;
  }
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0.5rem;
}
@media (max-width: 640px) {
  .pagination-numbers {
    gap: 0.125rem;
    margin: 0 0.25rem;
  }
}

.pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 0.375rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
@media (max-width: 640px) {
  .pagination-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.pagination-number:hover {
  border-color: #00d4ff;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
}
.pagination-number.pagination-current {
  background: #00d4ff;
  border-color: #00d4ff;
  color: white;
  cursor: default;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.25);
}
.pagination-number.pagination-current:hover {
  background: #00d4ff;
  border-color: #00d4ff;
  color: white;
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.25);
}
.pagination-number.pagination-number-large {
  width: 52px;
  height: 52px;
  font-size: 18px;
}
.pagination-number.pagination-number-small {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.pagination-ellipsis {
  color: var(--text-muted);
  font-weight: 700;
  padding: 0 0.25rem;
  user-select: none;
  display: flex;
  align-items: center;
  height: 44px;
}
@media (max-width: 640px) {
  .pagination-ellipsis {
    height: 36px;
    padding: 0 0.125rem;
  }
}

.pagination-blog .pagination-info .pagination-summary:before {
  content: "📝 ";
  margin-right: 0.25rem;
}

.pagination-services .pagination-info .pagination-summary:before {
  content: "⚡ ";
  margin-right: 0.25rem;
}

.pagination-search .pagination-info .pagination-summary:before {
  content: "🔍 ";
  margin-right: 0.25rem;
}

.pagination-load-more {
  text-align: center;
  margin-top: 3rem;
}
.pagination-load-more .load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--bg-primary);
  border: 2px solid #00d4ff;
  border-radius: 0.75rem;
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pagination-load-more .load-more-btn:hover {
  background: #00d4ff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.25);
}
.pagination-load-more .load-more-btn.loading {
  opacity: 0.7;
  cursor: wait;
}
.pagination-load-more .load-more-btn.loading:after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.25rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pagination-infinite-scroll {
  text-align: center;
  padding: 2rem 0;
}
.pagination-infinite-scroll .infinite-scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 14px;
}
.pagination-infinite-scroll .infinite-scroll-indicator:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-top-color: #00d4ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.site-navigation-wrapper {
  margin-top: 6rem;
  padding: 3rem;
  background: var(--bg-secondary);
  border-radius: 1rem;
  border: 2px solid var(--border-color);
}
.site-navigation-wrapper.site-navigation-minimal {
  padding: 1.5rem;
  background: transparent;
  border: none;
}
.site-navigation-wrapper.site-navigation-simple {
  padding: 1.5rem 0;
  background: transparent;
  border: none;
}

.site-navigation {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.navigation-progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.navigation-progress .progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation-progress .progress-info .progress-text {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}
.navigation-progress .progress-info .progress-title {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 18px;
}
.navigation-progress .progress-bar {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}
.navigation-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.navigation-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .navigation-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.navigation-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 80px;
}
.navigation-btn:hover {
  border-color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}
.navigation-btn.navigation-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--bg-tertiary);
}
.navigation-btn.navigation-disabled:hover {
  border-color: var(--border-color);
  transform: none;
  box-shadow: none;
}
.navigation-btn .nav-arrow {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  flex-shrink: 0;
}
.navigation-btn .nav-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}
.navigation-btn .nav-content .nav-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.navigation-btn .nav-content .nav-title {
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
}
.navigation-btn .nav-content .nav-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.navigation-btn.navigation-next .nav-content {
  text-align: right;
}
@media (max-width: 768px) {
  .navigation-btn .nav-content {
    text-align: center;
  }
  .navigation-btn.navigation-next .nav-content {
    text-align: center;
  }
}

.navigation-current {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
.navigation-current .current-indicator {
  width: 48px;
  height: 48px;
  background: #00d4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
}
.navigation-current .current-indicator .current-step {
  color: white;
  font-weight: 700;
  font-size: 18px;
}
.navigation-current .current-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.navigation-current .current-info .current-title {
  font-weight: 600;
  color: var(--text-primary);
}
.navigation-current .current-info .current-description {
  font-size: 14px;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .navigation-current {
    display: none;
  }
}

.navigation-overview {
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
}
.navigation-overview .overview-title {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-align: center;
}
.navigation-overview .overview-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.navigation-overview .overview-page {
  padding: 0.25rem 0.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.2s ease;
}
.navigation-overview .overview-page:hover {
  border-color: #00d4ff;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
}
.navigation-overview .overview-page.overview-current {
  background: #00d4ff;
  border-color: #00d4ff;
  color: white;
  cursor: default;
}
.navigation-overview .overview-page.overview-current:hover {
  background: #00d4ff;
  border-color: #00d4ff;
  color: white;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes slideInUp {
  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 fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-in {
  animation: slideInUp 0.6s ease-out;
}

.animate-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px var(--shadow-color);
}

.hover-glow {
  transition: all 0.3s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.text-gradient {
  background: linear-gradient(135deg, #00d4ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shimmer {
  background: linear-gradient(90deg, var(--text-primary) 25%, #00d4ff 50%, var(--text-primary) 75%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s infinite;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
}

.glass-strong {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
}

[data-theme=dark] .glass-strong {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-border {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box, linear-gradient(135deg, #00d4ff, #ff0080) border-box;
  border-radius: 0.5rem;
}

.neon-glow {
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3), 0 0 20px rgba(0, 212, 255, 0.2), 0 0 30px rgba(0, 212, 255, 0.1);
}

.loading-shimmer {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.parallax-slow {
  transform: translateZ(0);
  transition: transform 0.1s ease-out;
}

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

.button-ripple {
  position: relative;
  overflow: hidden;
}
.button-ripple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
.button-ripple:active::before {
  width: 300px;
  height: 300px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 768px) {
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}
@media (max-width: 1024px) {
  .hero .container {
    gap: 3rem;
  }
  .hero-cta {
    justify-content: center;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .hero-cta .btn {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .ai-human-graphic {
    gap: 1.5rem;
  }
  .ai-human-graphic .ai-side,
  .ai-human-graphic .human-side {
    padding: 1.5rem;
  }
  .ai-human-graphic .ai-side span,
  .ai-human-graphic .human-side span {
    font-size: 1.5rem;
  }
  .ai-human-graphic .connection {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .value-card {
    padding: 2rem;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-preview {
    padding: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .showcase-content {
    gap: 3rem;
    text-align: center;
  }
  .showcase-visual {
    order: -1;
  }
  .riddlen-preview {
    padding: 3rem;
    margin: 0 auto;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .footer-content {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .service-benefits {
    padding: 2rem;
  }
}
@media (max-width: 640px) {
  .contact-form {
    margin: 2rem 0;
  }
  .contact-form .form-group {
    margin-bottom: 1rem;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 768px) {
  .page-body h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
  .page-body h3 {
    margin-top: 2rem;
  }
}
@media (max-width: 640px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 16px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 18px;
  }
  .cta-section h2 {
    font-size: 1.875rem;
  }
  .cta-section p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .md\:text-center {
    text-align: center;
  }
  .md\:hidden {
    display: none;
  }
}
@media (max-width: 640px) {
  .sm\:text-center {
    text-align: center;
  }
  .sm\:hidden {
    display: none;
  }
  .sm\:block {
    display: block;
  }
}

/*# sourceMappingURL=main.css.map */