@charset "UTF-8";
/**
 * TheCallGrid - Main Stylesheet
 * 
 * Modern, responsive design with accessibility features
 * and performance optimizations.
 * 
 * Compiled from SCSS modules for better maintainability
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Layout */
  --header-height: 70px;
  /* Colors */
  --color-primary: #667eea;
  --color-primary-dark: #5568d3;
  --color-primary-light: #a5b4fc;
  --color-secondary: #764ba2;
  --color-accent: #f093fb;
  --color-text: #1a202c;
  --color-text-light: #4a5568;
  --color-text-muted: #718096;
  --color-bg: transparent;
  --color-bg-light: #f7fafc;
  --color-bg-dark: #edf2f7;
  --color-border: #e2e8f0;
  --color-success: #48bb78;
  --color-warning: #ed8936;
  --color-error: #f56565;
  --color-bg-white-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.95) 80%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  /* Typography */
  --font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.95) 80%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  position: relative;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a202c;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

main {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

#grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
  background-image: linear-gradient(45deg, transparent 0%, transparent calc(50% - 0.5px), rgba(102, 126, 234, 0.15) calc(50% - 0.5px), rgba(102, 126, 234, 0.15) calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%), linear-gradient(-45deg, transparent 0%, transparent calc(50% - 0.5px), rgba(102, 126, 234, 0.15) calc(50% - 0.5px), rgba(102, 126, 234, 0.15) calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(102, 126, 234, 0.5) 79px, rgba(102, 126, 234, 0.5) 81px, transparent 81px, transparent 80px), repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(102, 126, 234, 0.5) 79px, rgba(102, 126, 234, 0.5) 81px, transparent 81px, transparent 80px), radial-gradient(circle, rgba(102, 126, 234, 0.7) 2px, transparent 2.5px);
  background-size: 80px 80px, 80px 80px, 80px 100%, 100% 80px, 80px 80px;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
}

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

.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 1rem;
  background: #667eea;
  color: white;
  z-index: 10000;
}
.skip-to-main:focus {
  top: 0;
}

.hidden {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a202c;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #5568d3;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    filter: blur(2px) brightness(1);
  }
  50% {
    filter: blur(3px) brightness(1.2);
  }
}
[data-observe] {
  opacity: 1;
}

.feature-card {
  opacity: 0;
  transform: translateY(20px);
}
.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.bg-light {
  background-color: transparent;
}

.bg-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
}
.section-title.theme-color {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  color: #718096;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-subtitle.theme-color {
  color: #667eea;
  font-weight: 600;
}

.section-description {
  font-size: 1.125rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-description {
    font-size: 1rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

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

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    width: 280px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav.active {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-item {
    width: 100%;
  }
}

.nav-link {
  font-weight: 500;
  color: #1a202c;
  padding: 0.5rem 1rem;
  transition: color 0.15s ease;
}
.nav-link:hover, .nav-link.active {
  color: #667eea;
}
@media (max-width: 768px) {
  .nav-link {
    display: block;
    padding: 1rem;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.hamburger-icon {
  display: block;
  width: 24px;
  height: 20px;
  position: relative;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background: #1a202c;
  position: absolute;
  width: 100%;
  transition: transform 0.3s ease;
}
.hamburger-icon span:nth-child(1) {
  top: 0;
}
.hamburger-icon span:nth-child(2) {
  top: 9px;
}
.hamburger-icon span:nth-child(3) {
  bottom: 0;
}

.site-footer {
  background: #1a202c;
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

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

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-menu {
  list-style: none;
}
.footer-menu li {
  margin-bottom: 0.5rem;
}
.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s ease;
}
.footer-menu a:hover {
  color: white;
}

.footer-address {
  font-style: normal;
}
.footer-address p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-link:hover {
  background: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.social-link i {
  font-size: 1.5rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background: #667eea;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-to-top:hover {
  transform: translateY(-5px);
  background: #5568d3;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  font-size: 1rem;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: #667eea;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary i {
  font-size: 0.875rem;
}
.btn-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px 0 rgba(81, 117, 255, 0.23);
}

.btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}
.btn-secondary:hover {
  background: #667eea;
  color: white;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid #667eea;
  color: #667eea;
}
.btn-outline:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.btn-outline-light {
  border-color: white;
  color: white;
}
.btn-outline-light:hover {
  background: white;
  color: #667eea;
}

.btn-light {
  background: white;
  color: #667eea;
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-xl {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  font-weight: 600;
}
.btn-xl:hover {
  background: linear-gradient(135deg, #5a3b8f 0%, #667eea 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}
.btn-xl i:first-child {
  font-size: 1.25rem;
}
.btn-xl i:last-child {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .btn-xl {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-loading.hidden {
  display: none;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.15s ease;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}
.form-input.error:focus,
.form-textarea.error:focus,
.form-select.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-input.valid,
.form-textarea.valid,
.form-select.valid {
  border-color: #10b981;
}
.form-input.valid:focus,
.form-textarea.valid:focus,
.form-select.valid:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
}

.form-error {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #dc2626;
  font-weight: 500;
}
.form-error.visible {
  display: block;
  animation: slideDown 0.2s ease-out;
}
.form-error::before {
  content: "⚠ ";
  margin-right: 0.25rem;
}

.form-char-count {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #718096;
  text-align: right;
}
.form-char-count.error {
  color: #dc2626;
  font-weight: 600;
}
.form-char-count #message-count {
  font-weight: 600;
  color: #667eea;
}

.form-message {
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-weight: 500;
}
.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 2px solid #10b981;
}
.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 2px solid #ef4444;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.inline-form .form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .inline-form .form-row {
    flex-direction: column;
  }
}
.inline-form .form-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.15s ease;
}
.inline-form .form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.inline-form .btn {
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 600;
  border: none;
}
.inline-form .btn i {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .inline-form .btn {
    width: 100%;
    justify-content: center;
  }
}
.inline-form .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.inline-form .btn-primary:hover {
  background: linear-gradient(135deg, #5a3b8f 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.inline-form .btn-secondary {
  background: #764ba2;
  color: white;
  border: none;
}
.inline-form .btn-secondary:hover {
  background: #5a3b8f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4);
}

.feature-card {
  background: rgb(255, 255, 255);
  padding: 3rem;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  margin-bottom: 2rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
}

.card-icon {
  font-size: 1.5rem;
  color: #1a202c;
}
.card-icon i {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.card-number {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 6rem;
  font-weight: 500;
  color: #667eea;
  opacity: 0.1;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 768px) {
  .card-number {
    font-size: 3rem;
    top: 0.5rem;
    right: 0.5rem;
    opacity: 0.2;
  }
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .features-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.25rem;
  color: #1a202c;
  flex-shrink: 0;
}
.feature-icon i {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.feature-text {
  color: #1a202c;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.testimonials.section {
  min-height: 80vh;
  padding: 4rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.95) 80%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials.section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials.section .section-subtitle {
  color: #667eea;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.testimonials.section .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonials.section .section-description {
  font-size: 1.125rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .testimonials.section {
    min-height: auto;
    padding: 3rem 0;
  }
  .testimonials.section .section-header {
    margin-bottom: 2rem;
  }
  .testimonials.section .section-title {
    font-size: 2rem;
  }
}

.testimonials-swiper-wrapper {
  position: relative;
  padding: 3rem 0;
}

.testimonials-swiper {
  padding: 0 50px !important;
  overflow: visible !important;
}
@media (max-width: 768px) {
  .testimonials-swiper {
    padding: 0 35px !important;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: auto;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonials-swiper .swiper-slide-active .testimonial-card {
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3), 0 4px 12px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
}
.testimonial-rating i {
  color: #FFD700;
  font-size: 1.25rem;
  filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.3));
}

.testimonial-content {
  flex: 1;
  margin-bottom: 2rem;
}

.testimonial-quote {
  margin: 0;
}
.testimonial-quote p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 700;
  font-size: 1.0625rem;
  color: #1a202c;
}

.author-role {
  color: #718096;
  font-size: 0.9375rem;
  font-weight: 500;
}

.author-company {
  color: #667eea;
  font-size: 0.9375rem;
  font-weight: 600;
}

.author-industry {
  color: #718096;
  font-size: 0.875rem;
  font-style: italic;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease;
}
.testimonials-swiper .swiper-button-prev i,
.testimonials-swiper .swiper-button-next i {
  font-size: 1.125rem;
  color: #667eea;
  transition: color 0.15s ease;
}
.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  box-shadow: 0 0 0 2px rgba(81, 117, 255, 0.25);
  transition: box-shadow 0.15s ease;
}
@media (max-width: 768px) {
  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .testimonials-swiper .swiper-button-prev i,
  .testimonials-swiper .swiper-button-next i {
    font-size: 0.875rem;
  }
}

.testimonials-swiper .swiper-button-prev {
  left: 0;
}

.testimonials-swiper .swiper-button-next {
  right: 0;
}

.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 3rem;
  bottom: 0 !important;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #e2e8f0;
  opacity: 1;
  transition: all 0.15s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #667eea;
  width: 32px;
  border-radius: 6px;
}

.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.chat-launcher {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: #667eea;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  position: relative;
}
.chat-launcher:hover {
  transform: scale(1.1);
  background: #5568d3;
}

.chat-icon {
  font-size: 1.75rem;
}

.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #f56565;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.chat-window {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  max-height: 600px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  transition: all 0.3s ease;
}
.chat-window.open {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
@media (max-width: 768px) {
  .chat-window {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    max-height: none;
    bottom: 10px;
    right: 10px;
  }
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #667eea;
  color: white;
  border-radius: 16px 16px 0 0;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-title {
  font-size: 1rem;
  margin: 0;
}

.chat-status {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.9;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #48bb78;
}

.chat-header-actions {
  display: flex;
  gap: 0.5rem;
}

.chat-minimize,
.chat-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
  color: white;
}
.chat-minimize:hover,
.chat-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  max-height: 400px;
}

.chat-message {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.chat-message.visitor {
  flex-direction: row-reverse;
}
.chat-message.visitor .message-bubble {
  background: #667eea;
  color: white;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #edf2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-bubble {
  background: rgba(247, 250, 252, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 8px;
  max-width: 70%;
}

.message-time {
  font-size: 0.75rem;
  color: #718096;
  margin-top: 4px;
}

.chat-input {
  padding: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.chat-form {
  display: flex;
  gap: 0.5rem;
}

.chat-textarea {
  flex: 1;
  resize: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: inherit;
}

.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #667eea;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.chat-send:hover:not(:disabled) {
  background: #5568d3;
}

.typing-indicator {
  padding: 0 1.5rem 1rem;
  font-size: 0.875rem;
  color: #718096;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.typing-indicator.hidden {
  display: none;
}

.typing-dots {
  display: flex;
  gap: 4px;
}
.typing-dots .dot {
  width: 8px;
  height: 8px;
  background: #718096;
  border-radius: 9999px;
  animation: typing-dot 1.4s infinite;
}
.typing-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-dot {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
}
.chat-quick-replies {
  padding: 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: rgba(247, 250, 252, 0.5);
}
.chat-quick-replies.hidden {
  display: none;
}

.quick-replies-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.quick-replies-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-reply {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a202c;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quick-reply:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
  transform: translateX(5px);
}
.quick-reply:active {
  transform: translateX(5px) scale(0.98);
}

.avatar-icon,
.icon {
  display: inline-block;
  line-height: 1;
}

.message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.message-bubble p {
  margin: 0;
  line-height: 1.4;
}

.status-indicator.online {
  background: #48bb78;
  animation: pulse-status 2s ease-in-out infinite;
}
.status-indicator.offline {
  background: #718096;
}
.status-indicator.away {
  background: #ed8936;
}

@keyframes pulse-status {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.chat-messages {
  scrollbar-width: thin;
  scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
}
.chat-messages::-webkit-scrollbar {
  width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.3);
  border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 126, 234, 0.5);
}

.chat-textarea {
  min-height: 40px;
  max-height: 120px;
  font-size: 0.875rem;
  line-height: 1.4;
}
.chat-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.chat-textarea::placeholder {
  color: #718096;
}

.chat-send {
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.chat-send .icon {
  font-size: 1.125rem;
}

.chat-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.status-text {
  font-size: 0.75rem;
}

.chat-minimize,
.chat-close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.chat-minimize .icon,
.chat-close .icon {
  line-height: 1;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 0;
  }
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 9999px;
  margin: 0 auto 2rem auto;
  backdrop-filter: blur(10px);
  text-align: center;
}

.badge-icon {
  font-size: 1.25rem;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #667eea;
}

.hero-main {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1a202c;
  margin-bottom: 0.25rem;
}
.title-line.highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4rem;
}
@media (max-width: 768px) {
  .title-line {
    font-size: 2.5rem;
  }
  .title-line.highlight {
    font-size: 2.75rem;
  }
}

.title-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a5568;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .title-subtitle {
    font-size: 1.125rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 1rem;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  transition: all 0.15s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.hero-feature:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-check {
  font-size: 1.25rem;
  color: #48bb78;
  font-weight: bold;
}

.feature-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a202c;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-cta .btn {
  margin: 0 0.5rem;
}

.cta-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.offer-text {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

.offer-arrow {
  font-size: 1.2rem;
  color: #667eea;
  animation: bounce-arrow 2s ease-in-out infinite;
}

.why-us {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}
.why-us .container {
  width: 100%;
  max-width: 1400px;
}
.why-us .section-title,
.why-us .section-subtitle {
  color: white;
}
.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
}
.why-us .feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1a202c;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.why-us .feature-card:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.why-us .card-title,
.why-us .feature-text {
  color: #1a202c;
}
.why-us .card-icon,
.why-us .feature-icon,
.why-us .card-number {
  color: #667eea;
}
.why-us .card-number {
  opacity: 0.3;
}

.why-us-cta {
  text-align: center;
  margin-top: 6rem;
  padding-top: 3rem;
}
.why-us-cta .btn {
  margin-bottom: 1.5rem;
}
.why-us-cta .cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.industries {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.95) 80%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  border-top-left-radius: 600px;
  border-top-right-radius: 600px;
}

.industry-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 3rem 0;
  position: relative;
}
.industry-showcase:last-child {
  margin-bottom: 0;
}
.industry-showcase.industry-right .industry-content {
  order: 1;
}
.industry-showcase.industry-right .industry-image {
  order: 2;
}
.industry-showcase.industry-right .decoration-bar {
  right: auto;
  left: 0;
}
.industry-showcase.industry-right .decoration-dots {
  left: auto;
  right: 1.5rem;
}
.industry-showcase:hover .industry-image img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .industry-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .industry-showcase.industry-right .industry-content {
    order: -1;
  }
  .industry-showcase.industry-right .industry-image {
    order: 0;
  }
}

.industry-image {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .industry-image {
    height: 250px;
    order: -1;
  }
}

.industry-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-bar {
  position: absolute;
  top: 1.5rem;
  right: 0;
  width: 4px;
  height: 80%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.decoration-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, #667eea 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.3;
}

.industry-content {
  padding: 2rem;
  max-width: 500px;
}
@media (max-width: 768px) {
  .industry-content {
    max-width: none;
    padding: 1.5rem;
  }
}

.industry-subtitle {
  color: #667eea;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.industry-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .industry-title {
    font-size: 1.875rem;
  }
}

.industry-description {
  font-size: 1.125rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .industry-description {
    font-size: 1rem;
  }
}

.industry-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.industry-features .feature-item {
  font-size: 0.95rem;
  color: #1a202c;
}
.industry-features .feature-item i {
  color: #667eea;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.industry-cta {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1rem;
  font-weight: 600;
}

.cta-banner.section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cta-banner.section {
    padding: 3rem 0;
  }
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .cta-banner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.cta-banner-item {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-banner-item:hover {
  border-color: white;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}
@media (max-width: 768px) {
  .cta-banner-item {
    padding: 2rem 1.5rem;
  }
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.cta-icon i {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .cta-icon {
    width: 60px;
    height: 60px;
  }
  .cta-icon i {
    font-size: 1.5rem;
  }
}

.cta-banner-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cta-banner-title {
    font-size: 1.5rem;
  }
}

.cta-banner-description {
  font-size: 1.0625rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cta-banner-description {
    font-size: 1rem;
  }
}

.signup-form {
  width: 100%;
  max-width: 500px;
}

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

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

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .stat-value {
    font-size: 1.5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: #718096;
  font-weight: 500;
}

.about-hero.section {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .about-hero.section {
    padding: 3rem 0 2rem;
  }
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2rem;
  }
}

.about-hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .about-hero-description {
    font-size: 1rem;
  }
}

.mission.section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(102, 126, 234, 0.03) 0%, rgb(255, 255, 255) 100%);
}
@media (max-width: 768px) {
  .mission.section {
    padding: 3rem 0;
  }
}

.mission-stats-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.mission-stats-top .stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.mission-stats-top .stat-card:hover {
  border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  transform: translateY(-5px);
}
.mission-stats-top .stat-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-stats-top .stat-icon i {
  font-size: 1.75rem;
  color: #667eea;
}
.mission-stats-top .stat-content {
  flex: 1;
}
.mission-stats-top .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.mission-stats-top .stat-label {
  font-size: 0.9375rem;
  color: #718096;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .mission-stats-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .mission-stats-top {
    grid-template-columns: 1fr;
  }
}

.mission-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.mission-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}
.mission-content:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}
@media (max-width: 768px) {
  .mission-content {
    padding: 2rem;
  }
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.mission-icon i {
  color: white;
}
.mission-icon {
  margin: 0 auto 1.5rem;
}
.mission-icon i {
  font-size: 2rem;
}

.mission-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #718096;
  margin-bottom: 1.5rem;
  text-align: left;
}
.mission-text:last-child {
  margin-bottom: 0;
}

.transparency.section {
  background: white;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .transparency.section {
    padding: 3rem 0;
  }
}

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

.transparency-item {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}
.transparency-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.transparency-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.transparency-icon i {
  color: white;
}
.transparency-icon {
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.transparency-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.transparency-text {
  color: #1a202c;
  line-height: 1.6;
  font-size: 1rem;
}

.callers.section {
  padding: 5rem 0;
  background: white;
}
.callers.section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.callers.section .section-subtitle {
  color: #667eea;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.callers.section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .callers.section .section-title {
    font-size: 2rem;
  }
}
.callers.section .section-description {
  font-size: 1.125rem;
  color: #718096;
}
@media (max-width: 768px) {
  .callers.section {
    padding: 3rem 0;
  }
}

.callers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .callers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .callers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.caller-requirement {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}
.caller-requirement:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
  transform: translateY(-8px);
}
@media (max-width: 768px) {
  .caller-requirement {
    padding: 2rem;
  }
}

.requirement-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.requirement-icon i {
  color: white;
}
.requirement-icon {
  margin: 0 auto 1.5rem;
}
.requirement-icon i {
  font-size: 2rem;
}

.requirement-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.requirement-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #718096;
}

.automation.section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}
@media (max-width: 768px) {
  .automation.section {
    padding: 3rem 0;
  }
}

.automation-grid {
  width: 100%;
}

.automation-content {
  width: 100%;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.automation-content:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}
@media (max-width: 768px) {
  .automation-content {
    padding: 2rem;
  }
}

.automation-icon-header {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.automation-icon-header i {
  color: white;
}
.automation-icon-header {
  margin-bottom: 1.5rem;
}
.automation-icon-header i {
  font-size: 2rem;
}

.automation-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.automation-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #718096;
  margin-bottom: 2rem;
}

.automation-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .automation-features {
    grid-template-columns: 1fr;
  }
}
.automation-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 8px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.15s ease;
}
.automation-features .feature-item:hover {
  border-color: #667eea;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}
.automation-features .feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.automation-features .feature-icon i {
  font-size: 1.25rem;
  color: white;
}
.automation-features .feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.automation-features .feature-content strong {
  font-weight: 600;
  color: #1a202c;
  font-size: 1.0625rem;
}
.automation-features .feature-content span {
  color: #718096;
  font-size: 0.9375rem;
}

.automation-conclusion {
  font-weight: 500;
  color: #1a202c;
  border-left: 4px solid #667eea;
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.values.section {
  padding: 5rem 0;
  background: white;
}
.values.section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.values.section .section-subtitle {
  color: #667eea;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.values.section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .values.section .section-title {
    font-size: 2rem;
  }
}
.values.section .section-description {
  font-size: 1.125rem;
  color: #718096;
}
@media (max-width: 768px) {
  .values.section {
    padding: 3rem 0;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.value-card:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
  transform: translateY(-8px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.value-icon i {
  color: white;
}
.value-icon {
  margin-bottom: 1.5rem;
}
.value-icon i {
  font-size: 2rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.value-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #718096;
}

.about-cta.section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.about-cta.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .about-cta.section {
    padding: 3rem 0;
  }
}

.about-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-cta-title {
    font-size: 2rem;
  }
}

.about-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .about-cta-description {
    font-size: 1rem;
  }
}

.about-cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(10px);
}
.about-cta-actions .btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .about-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .about-cta-actions .btn-xl {
    width: 100%;
  }
}

.contact-hero.section {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-hero.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .contact-hero.section {
    padding: 3rem 0 2rem;
  }
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2rem;
  }
}

.contact-hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-hero-description {
    font-size: 1rem;
  }
}

.contact.section {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(102, 126, 234, 0.03) 0%, rgb(255, 255, 255) 100%);
}
@media (max-width: 768px) {
  .contact.section {
    padding: 3rem 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.contact-form-wrapper:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #718096;
  margin-bottom: 2rem;
}

.contact-form .btn-block {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}
.contact-form .btn-block:hover {
  background: linear-gradient(135deg, #5a3b8f 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.contact-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}
@media (max-width: 768px) {
  .contact-info-card {
    padding: 1.5rem;
  }
}

.info-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.info-icon-lg {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.info-icon-lg i {
  color: white;
}
.info-icon-lg {
  margin: 0 auto 1rem;
}
.info-icon-lg i {
  font-size: 1.75rem;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.info-subtitle {
  color: #718096;
  font-size: 0.9375rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  font-size: 1.125rem;
}
.info-icon i {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.info-content {
  flex: 1;
}
.info-content strong {
  display: block;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.info-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.info-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

.info-text {
  color: #718096;
  font-size: 0.9375rem;
  margin: 0.25rem 0 0 0;
  line-height: 1.5;
}

.services-hero.section {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.services-hero.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .services-hero.section {
    padding: 3rem 0 2rem;
  }
}

.services-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.services-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.services-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2rem;
  }
}

.services-hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .services-hero-description {
    font-size: 1rem;
  }
}

.core-services.section {
  padding: 5rem 0;
  background: white;
}
@media (max-width: 768px) {
  .core-services.section {
    padding: 3rem 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
  transform: translateY(-8px);
}
@media (max-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.service-icon i {
  color: white;
}
.service-icon {
  margin-bottom: 1.5rem;
}
.service-icon i {
  font-size: 2rem;
}

.service-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #718096;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
}
.service-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.service-features .feature-item i {
  color: #667eea;
  font-size: 1rem;
}
.service-features .feature-item span {
  color: #1a202c;
  font-size: 0.9375rem;
}

.service-cta {
  margin-top: auto;
}

.industry-services.section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .industry-services.section {
    padding: 3rem 0;
  }
}

.industry-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .industry-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .industry-services-grid {
    grid-template-columns: 1fr;
  }
}

.industry-service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.industry-service-card:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
  transform: translateY(-8px);
}
@media (max-width: 768px) {
  .industry-service-card {
    padding: 2rem;
  }
}

.industry-service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.industry-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.industry-service-icon i {
  color: white;
}
.industry-service-icon i {
  font-size: 1.75rem;
}

.industry-service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
}

.industry-service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 1.5rem;
}

.industry-service-features {
  margin-bottom: 1.5rem;
}
.industry-service-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.industry-service-features .feature-item i {
  color: #667eea;
  font-size: 0.9375rem;
}
.industry-service-features .feature-item span {
  color: #1a202c;
  font-size: 0.9375rem;
}

.industry-service-cta {
  margin-top: auto;
}

.service-process.section {
  padding: 5rem 0;
  background: white;
}
@media (max-width: 768px) {
  .service-process.section {
    padding: 3rem 0;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: #667eea;
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .process-step:not(:last-child)::after {
    display: none;
  }
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(102, 126, 234, 0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.step-icon i {
  color: white;
}
.step-icon {
  margin: 0 auto 1.5rem;
}
.step-icon i {
  font-size: 2rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #718096;
}

.why-services.section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .why-services.section {
    padding: 3rem 0;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

.advantage-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}
.advantage-card:hover {
  border-color: #667eea;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
  transform: translateY(-8px);
}
@media (max-width: 768px) {
  .advantage-card {
    padding: 2rem;
  }
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.advantage-icon i {
  color: white;
}
.advantage-icon {
  margin: 0 auto 1.5rem;
}
.advantage-icon i {
  font-size: 2rem;
}

.advantage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.advantage-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #718096;
}

.services-cta.section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.services-cta.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .services-cta.section {
    padding: 3rem 0;
  }
}

.services-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .services-cta-title {
    font-size: 2rem;
  }
}

.services-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .services-cta-description {
    font-size: 1rem;
  }
}

.services-cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.services-cta-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(10px);
}
.services-cta-actions .btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .services-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .services-cta-actions .btn-xl {
    width: 100%;
  }
}

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