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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

/* Navigation */
nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  color: #2c3e50;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 91, 172, 0.1);
  transition: all 0.3s ease;
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #005BAC 0%, #FFCD00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

nav .logo:hover {
  transform: scale(1.05);
}

nav .logo::after {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #005BAC 0%, #FFCD00 100%);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #005BAC;
}

/* Hero Section */
.hero {
  background-color: #005BAC;
  background-image: linear-gradient(135deg, rgba(0, 91, 172, 0.85) 0%, rgba(135, 206, 235, 0.7) 50%, rgba(255, 205, 0, 0.6) 100%),
    url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?w=1920&h=1080&fit=crop');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #fff;
  padding: 200px 20px 120px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #FFCD00;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #005BAC;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
  box-shadow: 0 4px 15px rgba(255, 205, 0, 0.3);
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  animation: fadeInUp 1s ease-out 0.1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  margin: 0 10px;
  background: linear-gradient(135deg, #005BAC 0%, #0077CC 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(0, 91, 172, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 91, 172, 0.6);
}

.btn-large {
  padding: 20px 50px;
  font-size: 1.1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Trust Section */
.trust {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '❄️';
  position: absolute;
  font-size: 8rem;
  opacity: 0.05;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.trust::after {
  content: '☀️';
  position: absolute;
  font-size: 8rem;
  opacity: 0.05;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.trust-text {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 3rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-stat h3 {
  font-size: 3rem;
  background: linear-gradient(135deg, #005BAC 0%, #FFCD00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.trust-stat p {
  color: #5a6c7d;
  font-size: 1.1rem;
}

/* Core Values */
.core-values {
  background: linear-gradient(135deg, #e8f4f8 0%, #fff5e1 100%);
  padding: 80px 20px;
  position: relative;
}

.core-values::before {
  content: '🌟';
  position: absolute;
  font-size: 15rem;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}

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

.value-card {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(0, 91, 172, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 91, 172, 0.1);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #005BAC, #FFCD00, #005BAC);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 205, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 205, 0, 0.3);
}

.value-card i {
  font-size: 3rem;
  color: #005BAC;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(255, 205, 0, 0.3));
}

.value-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  color: #5a6c7d;
  line-height: 1.8;
}

/* Services Section */
.services {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #fff5e1 100%);
  position: relative;
}

.services::before {
  content: '🚀';
  position: absolute;
  font-size: 12rem;
  opacity: 0.03;
  top: 20%;
  right: 5%;
  animation: float 15s ease-in-out infinite;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: #5a6c7d;
  margin-bottom: 4rem;
  font-size: 1.2rem;
}

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

.service-card-large {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(0, 91, 172, 0.15);
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 91, 172, 0.08);
}

.service-card-large:hover {
  transform: translateY(-10px) rotate(-1deg);
  border-color: rgba(255, 205, 0, 0.6);
  box-shadow: 0 25px 50px rgba(255, 205, 0, 0.25);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FFCD00 0%, #FFE066 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 205, 0, 0.4);
}

.service-icon i {
  font-size: 2rem;
  color: #005BAC;
}

.service-card-large h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 700;
}

.service-card-large > p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: #2c3e50;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: #005BAC;
  font-size: 0.9rem;
}

/* Process Section */
.process {
  background: linear-gradient(135deg, #e8f4f8 0%, #ffffff 50%, #f0f8ff 100%);
  padding: 100px 20px;
  position: relative;
}

.process::before {
  content: '📊';
  position: absolute;
  font-size: 10rem;
  opacity: 0.03;
  bottom: 10%;
  left: 5%;
}

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

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 91, 172, 0.2) 0%, rgba(255, 205, 0, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 205, 0, 0.2);
  border: 3px solid rgba(255, 205, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: rgba(255, 205, 0, 0.4);
  border-color: #FFCD00;
  transform: scale(1.1) rotate(360deg);
}

.step-icon i {
  font-size: 2rem;
  color: #005BAC;
}

.process-step h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-step p {
  color: #5a6c7d;
  line-height: 1.8;
}

/* Testimonials / Clients */
.testimonials {
  background: linear-gradient(135deg, #fff5e1 0%, #ffffff 50%, #f0f8ff 100%);
  color: #2c3e50;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '🤝';
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20rem;
  opacity: 0.02;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Client Logos Grid */
.client-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(255, 205, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 140px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 205, 0, 0.1);
}

.client-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 205, 0, 0.1) 0%, rgba(0, 91, 172, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-logo:hover::before {
  opacity: 1;
}

.client-logo:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 205, 0, 0.3);
  border-color: rgba(255, 205, 0, 0.6);
}

.client-logo img {
  max-width: 160px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.client-logo:hover img {
  transform: scale(1.08);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 91, 172, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 91, 172, 0.5);
  box-shadow: 0 20px 40px rgba(0, 91, 172, 0.3);
}

.quote-icon {
  font-size: 2rem;
  color: #FFCD00;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.client-location {
  color: #FFCD00;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.testimonial-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #005BAC;
}

.author-info h4 {
  color: #fff;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.author-info span {
  color: #FFCD00;
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA Section */
.cta {
  background: #005BAC;
  padding: 140px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Digital Grid Background */
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 205, 0, 0.03) 2px, rgba(255, 205, 0, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 205, 0, 0.03) 2px, rgba(255, 205, 0, 0.03) 4px);
  opacity: 0.5;
}

/* Swedish Cross - Horizontal with Code */
.cta::after {
  content: '#include <iostream>   class DATADAB { private: std::string location = "Sweden"; public: void deploy() { std::cout << "Deploying..." << std::endl; } };   template<typename T> T* allocate() { return new T(); }   std::vector<int> vec = {1, 2, 3};   for(auto& item : vec) { process(item); }   try { build(); } catch(const std::exception& e) { std::cerr << e.what(); }   auto lambda = [](int x) -> int { return x * 2; };   std::unique_ptr<Project> project = std::make_unique<Project>();   if(client.satisfied()) return 0;   ';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg,
    rgba(255, 205, 0, 0.1) 0%,
    rgba(255, 205, 0, 0.4) 50%,
    rgba(255, 205, 0, 0.1) 100%
  );
  transform: translateY(-50%);
  box-shadow:
    0 0 60px rgba(255, 205, 0, 0.6),
    inset 0 0 60px rgba(255, 205, 0, 0.2);
  font-size: 16px;
  color: rgba(255, 205, 0, 0.5);
  font-family: 'Courier New', monospace;
  letter-spacing: 8px;
  line-height: 120px;
  overflow: hidden;
  white-space: nowrap;
  animation: scrollCode 40s linear infinite;
}

@keyframes scrollCode {
  0% {
    text-indent: 0;
  }
  100% {
    text-indent: -50%;
  }
}

/* Swedish Cross - Vertical with Code */
.cta-vertical-cross {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25%;
  width: 120px;
  background: linear-gradient(90deg,
    rgba(255, 205, 0, 0.1) 0%,
    rgba(255, 205, 0, 0.4) 50%,
    rgba(255, 205, 0, 0.1) 100%
  );
  box-shadow:
    0 0 60px rgba(255, 205, 0, 0.6),
    inset 0 0 60px rgba(255, 205, 0, 0.2);
  z-index: 0;
  overflow: hidden;
}


@keyframes scrollCodeVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.cta .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.cta h2 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.cta p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 400;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #f0f8ff 0%, #fff5e1 100%);
  padding: 100px 20px;
  position: relative;
}

.contact-form-section::before {
  content: '✉️';
  position: absolute;
  font-size: 15rem;
  opacity: 0.02;
  top: 10%;
  right: 10%;
  animation: float 20s ease-in-out infinite;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(0, 91, 172, 0.2);
  box-shadow: 0 10px 40px rgba(0, 91, 172, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  display: block;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 91, 172, 0.2);
  border-radius: 12px;
  color: #2c3e50;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFCD00;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(255, 205, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #95a5a6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23005BAC' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-group select option {
  background: #ffffff;
  color: #2c3e50;
}

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

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Custom Checkbox Styling */
.form-checkbox {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid rgba(0, 91, 172, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:hover {
  border-color: #005BAC;
  background: rgba(255, 255, 255, 1);
}

.checkbox-label input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #005BAC 0%, #0073d1 100%);
  border-color: #005BAC;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFCD00;
  font-size: 16px;
  font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.2);
}

.checkbox-label span {
  color: #2c3e50;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label span a {
  color: #005BAC;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.checkbox-label span a:hover {
  color: #FFCD00;
  border-bottom-color: #FFCD00;
}

/* Contact Form Popup Modal */
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.contact-popup.active {
  opacity: 1;
  pointer-events: all;
}

.contact-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.contact-popup-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.contact-popup.active .contact-popup-content {
  transform: scale(1);
}

.contact-popup .popup-icon {
  font-size: 64px;
  margin-bottom: 1.5rem;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.contact-popup-success .popup-icon {
  color: #2ecc71;
}

.contact-popup-error .popup-icon {
  color: #e74c3c;
}

.contact-popup-content h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-popup-content p {
  color: #7f8c8d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.popup-close-btn {
  background: linear-gradient(135deg, #005BAC 0%, #0073d1 100%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 91, 172, 0.3);
}

.popup-close-btn:hover {
  background: linear-gradient(135deg, #0073d1 0%, #005BAC 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 91, 172, 0.4);
}

.popup-close-btn:active {
  transform: translateY(0);
}

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

.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 205, 0, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 205, 0, 0.1);
}

.contact-info-card:hover {
  transform: translateX(10px) scale(1.02);
  border-color: rgba(255, 205, 0, 0.6);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 30px rgba(255, 205, 0, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFCD00 0%, #FFE066 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 205, 0, 0.3);
}

.contact-icon i {
  font-size: 1.3rem;
  color: #005BAC;
}

.contact-info-card h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-info-card p {
  color: #5a6c7d;
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 60px 20px 20px;
  text-align: center;
  border-top: 4px solid #FFCD00;
  position: relative;
}

footer::before {
  content: '🇸🇪';
  position: absolute;
  font-size: 10rem;
  opacity: 0.03;
  bottom: 10%;
  right: 5%;
}

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

.footer-section h3 {
  background: linear-gradient(135deg, #005BAC 0%, #FFCD00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-section p {
  color: #b0b0b0;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #FFCD00;
  padding-left: 5px;
}

.footer-section i {
  margin-right: 10px;
  color: #FFCD00;
}

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

.social-links a {
  color: #b0b0b0;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
  color: #FFCD00;
  background: rgba(0, 91, 172, 0.2);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 91, 172, 0.2);
  padding-top: 30px;
  color: #808080;
}

/* Legal Pages */
.legal-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  padding: 140px 20px 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 800;
  background: linear-gradient(135deg, #005BAC 0%, #FFCD00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-intro {
  color: #5a6c7d;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.legal-content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 91, 172, 0.1);
}

.legal-content h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid rgba(255, 205, 0, 0.5);
}

.legal-content h3 {
  color: #005BAC;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-content h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.legal-content p {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 0.8rem;
}

.legal-content a {
  color: #005BAC;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: 600;
}

.legal-content a:hover {
  color: #FFCD00;
}

.legal-content strong {
  color: #2c3e50;
  font-weight: 700;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 91, 172, 0.1);
}

.cookie-table thead {
  background: linear-gradient(135deg, #005BAC 0%, #0077CC 100%);
}

.cookie-table th {
  color: #ffffff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 205, 0, 0.5);
}

.cookie-table td {
  color: #2c3e50;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 91, 172, 0.1);
}

.cookie-table tbody tr:hover {
  background: rgba(255, 205, 0, 0.1);
}

.legal-back {
  margin-top: 4rem;
  text-align: center;
}

.legal-back .btn {
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .services-grid-large {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  @media (max-width: 480px) {
    .client-logos {
      grid-template-columns: 1fr;
    }
  }

  .cta h2 {
    font-size: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding: 100px 20px 60px;
  }

  .legal-page h1 {
    font-size: 2.5rem;
  }

  .legal-content h2 {
    font-size: 1.6rem;
  }

  .legal-content h3 {
    font-size: 1.3rem;
  }

  .cookie-table {
    font-size: 0.9rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.8rem;
  }
}
