:root {
  --primary-dark: #1a1a2e;
  --primary-deep: #16213e;
  --accent-purple: #5b2c87;
  --accent-blue: #2d4a87;
  --accent-teal: #0f4c75;
  --gradient-primary: linear-gradient(135deg, #5b2c87 0%, #2d4a87 50%, #0f4c75 100%);
  --gradient-secondary: linear-gradient(45deg, #16213e 0%, #1a1a2e 100%);
  --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --text-light: #f8f9fa;
  --text-muted: #adb5bd;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-primary: 0 10px 30px rgba(91, 44, 135, 0.3);
  --shadow-secondary: 0 5px 20px rgba(22, 33, 62, 0.4);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.custom-navbar {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  padding: 1rem 0;
}

.navbar-brand .navbar-logo {
  width: 32px;
  height: 32px;
  transition: var(--transition-smooth);
}

.brand-text {
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #667eea;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
  width: 80%;
}

.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
  color: white;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-gradient:hover::before {
  left: 100%;
}

.mobile-menu {
  background: var(--primary-deep);
  border-left: 1px solid var(--border-color);
}

.mobile-menu .nav-link {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hero-section {
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 44, 135, 0.3) 0%, transparent 70%);
  animation: floatAnimation 20s ease-in-out infinite;
}

.bg-element.element-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.bg-element.element-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: -5%;
  animation-delay: -7s;
}

.bg-element.element-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes floatAnimation {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {
  background: rgba(91, 44, 135, 0.2);
  color: var(--text-light);
  border: 1px solid rgba(91, 44, 135, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 90%;
}

.hero-actions {
  margin: 2rem 0;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: var(--text-light);
}

.hero-stats {
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1rem 0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  display: block;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-card {
  position: relative;
  transform-style: preserve-3d;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(5deg); }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  animation: elementFloat 8s ease-in-out infinite;
  box-shadow: var(--shadow-primary);
}

.floating-element.element-1 {
  top: 20%;
  right: -10%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  bottom: 30%;
  left: -10%;
  animation-delay: -2.5s;
}

.floating-element.element-3 {
  top: 10%;
  left: 20%;
  animation-delay: -5s;
}

@keyframes elementFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -15px); }
}

.section-badge {
  display: inline-block;
  background: rgba(91, 44, 135, 0.2);
  color: #667eea;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(102, 126, 234, 0.3);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.features-section {
  background: var(--primary-deep);
  position: relative;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: var(--shadow-secondary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.metric-badge {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.solutions-section {
  background: var(--primary-dark);
  position: relative;
}

.solutions-visual {
  position: relative;
}

.solution-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.solution-card {
  position: absolute;
  background: var(--gradient-primary);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-primary);
  animation: cardFloat 10s ease-in-out infinite;
}

.solution-card.card-1 {
  top: 20%;
  right: -20%;
  animation-delay: 0s;
}

.solution-card.card-2 {
  bottom: 40%;
  left: -15%;
  animation-delay: -3s;
}

.solution-card.card-3 {
  top: 60%;
  right: 10%;
  animation-delay: -6s;
}

@keyframes cardFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -20px); }
}

.solutions-content {
  padding: 2rem 0;
}

.solution-list {
  margin: 2rem 0;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.solution-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.solution-text h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.solution-text p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.technology-section {
  background: var(--primary-deep);
  position: relative;
}

.tech-showcase {
  position: relative;
  padding: 3rem 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.tech-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.5);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  transition: var(--transition-bounce);
}

.tech-item:hover .tech-icon {
  transform: scale(1.1) rotate(360deg);
}

.tech-item h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.tech-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tech-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.central-node {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.connection-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
}

.line {
  position: absolute;
  width: 2px;
  height: 100px;
  background: var(--gradient-accent);
  opacity: 0.6;
  border-radius: 1px;
}

.line.line-1 { top: 0; left: 50%; transform: translateX(-50%) rotate(0deg); }
.line.line-2 { top: 25%; right: 0; transform: rotate(60deg) translateX(-50%); }
.line.line-3 { bottom: 25%; right: 0; transform: rotate(120deg) translateX(-50%); }
.line.line-4 { bottom: 0; left: 50%; transform: translateX(-50%) rotate(180deg); }
.line.line-5 { bottom: 25%; left: 0; transform: rotate(240deg) translateX(-50%); }
.line.line-6 { top: 25%; left: 0; transform: rotate(300deg) translateX(-50%); }

.security-section {
  background: var(--primary-dark);
  position: relative;
}

.security-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.security-layer {
  position: absolute;
  background: var(--gradient-primary);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-primary);
  animation: securityFloat 12s ease-in-out infinite;
}

.security-layer.layer-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.security-layer.layer-2 {
  top: 30%;
  left: -10%;
  animation-delay: -3s;
}

.security-layer.layer-3 {
  bottom: 30%;
  right: -5%;
  animation-delay: -6s;
}

.security-layer.layer-4 {
  bottom: 10%;
  left: 5%;
  animation-delay: -9s;
}

@keyframes securityFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -10px); }
}

.security-content {
  padding: 2rem 0;
}

.security-features {
  margin: 2rem 0;
}

.security-feature {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.security-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.3);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-header i {
  color: #667eea;
  font-size: 1.5rem;
}

.feature-header h5 {
  color: var(--text-light);
  margin-bottom: 0;
}

.security-feature p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.security-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge-item {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-section {
  background: var(--primary-deep);
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.form-floating .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.form-floating .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  color: var(--text-light);
}

.form-floating label {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  color: #667eea;
}

.form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-light);
}

.form-select option {
  background: var(--primary-deep);
  color: var(--text-light);
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  height: fit-content;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.contact-text h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-text a {
  color: #667eea;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-text a:hover {
  color: #764ba2;
}

.office-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.office-hours h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-container iframe {
  filter: grayscale(100%) contrast(1.2) opacity(0.8);
  transition: var(--transition-smooth);
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1) opacity(1);
}

.custom-footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-description {
  color: var(--text-muted);
  margin: 1rem 0;
  line-height: 1.6;
}

.innovation-badge {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-title {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  margin-bottom: 0.5rem;
}

.link-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.link-list a:hover {
  color: #667eea;
  transform: translateX(5px);
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.contact-link:hover {
  color: #667eea;
}

.contact-link i {
  width: 16px;
  text-align: center;
}

.footer-stats {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
}

.copyright p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.legal-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.legal-link:hover {
  color: #667eea;
}

.separator {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-deep);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  z-index: 1050;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-text {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.cookie-text a {
  color: #667eea;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    padding-top: 80px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    margin: 0;
  }
  
  .hero-stats {
    margin-top: 2rem;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .solutions-visual {
    margin-bottom: 2rem;
    order: 2;
  }
  
  .solutions-content {
    order: 1;
  }
  
  .security-visual {
    margin-bottom: 2rem;
    order: 1;
  }
  
  .security-content {
    order: 2;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .security-badges {
    justify-content: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .floating-element {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .solution-card {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .security-layer {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

.privacy-page {
  background: var(--primary-dark);
}

.privacy-hero {
  background: var(--gradient-secondary);
  position: relative;
}

.privacy-stats {
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
}

.stat-card .stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1rem;
}

.stat-card h4 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.privacy-content {
  background: var(--primary-deep);
}

.privacy-nav {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 120px;
}

.nav-title {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.privacy-toc {
  display: flex;
  flex-direction: column;
}

.toc-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: var(--transition-smooth);
}

.toc-link:hover {
  color: #667eea;
  border-left-color: rgba(102, 126, 234, 0.3);
  transform: translateX(5px);
}

.toc-link.active {
  color: #667eea;
  border-left-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.update-notice {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
}

.notice-content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.notice-content i {
  color: #667eea;
  font-size: 1.2rem;
  margin-top: 2px;
}

.notice-text strong {
  color: var(--text-light);
}

.privacy-section {
  margin-bottom: 4rem;
}

.section-heading {
  color: var(--text-light);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.section-heading i {
  color: #667eea;
}

.section-content {
  color: var(--text-muted);
  line-height: 1.7;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.key-principles h5 {
  color: var(--text-light);
  margin: 2rem 0 1rem 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.principle-item {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.principle-item i {
  color: #667eea;
  font-size: 1.2rem;
}

.principle-item span {
  color: var(--text-light);
  font-weight: 500;
}

.info-categories {
  margin: 2rem 0;
}

.category-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.3);
}

.category-card h5 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.category-card h5 i {
  color: #667eea;
}

.category-card ul {
  list-style: none;
  padding: 0;
}

.category-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 1.5rem;
}

.category-card li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.category-card li:last-child {
  border-bottom: none;
}

.usage-list {
  margin: 2rem 0;
}

.usage-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.usage-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.usage-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.usage-content h6 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.usage-content p {
  margin-bottom: 0;
}

.sharing-policy {
  background: rgba(255, 87, 87, 0.1);
  border: 1px solid rgba(255, 87, 87, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.policy-statement {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 1.1rem;
}

.sharing-scenarios {
  margin-top: 2rem;
}

.scenario-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.scenario-item h6 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.scenario-item h6 i {
  color: #667eea;
}

.scenario-item p {
  margin-bottom: 0;
}

.security-measures {
  margin: 2rem 0;
}

.security-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.3);
}

.security-card .security-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.security-card h6 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.security-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.right-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.right-item .right-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1rem;
}

.right-item h6 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.right-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.exercise-rights {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
}

.contact-privacy-rights p {
  margin-bottom: 0.5rem;
}

.contact-privacy-rights strong {
  color: var(--text-light);
}

.transfer-info {
  margin: 2rem 0;
}

.transfer-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.transfer-item h6 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.transfer-item h6 i {
  color: #667eea;
}

.transfer-item p {
  margin-bottom: 0;
}

.retention-schedule {
  margin: 2rem 0;
}

.retention-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.retention-period {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 15px;
  padding: 1.5rem;
  min-width: 100px;
  color: white;
}

.period-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.period-unit {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.retention-details h6 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.retention-details p {
  margin-bottom: 0;
}

.cookies-types {
  margin: 2rem 0;
}

.cookie-type {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.cookie-type h6 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cookie-type h6 i {
  color: #667eea;
}

.cookie-type p {
  margin-bottom: 0;
}

.cookie-control {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.cookie-control strong {
  color: var(--text-light);
}

.contact-cards {
  margin: 2rem 0;
}

.privacy-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition-smooth);
}

.privacy-contact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-header i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-header h6 {
  color: var(--text-light);
  margin-bottom: 0;
  font-weight: 600;
}

.contact-details p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.contact-details strong {
  color: var(--text-light);
}

.contact-details a {
  color: #667eea;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.mailing-address {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.mailing-address h6 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.mailing-address h6 i {
  color: #667eea;
}

.address-block p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.regulatory-info h6 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.policy-updates {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
}

.update-card {
  padding: 2rem;
}

.update-card h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.update-card h5 i {
  color: #667eea;
}

.update-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.version-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1000px) {
  .hero-content {
    padding-top: 150px;
  }

  .hero-actions a {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 768px) {
  .privacy-nav {
    position: static;
    margin-bottom: 2rem;
  }
  
  .retention-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
}
