:root {
  --primary-color: #0073e6;
  --primary-hover: #005bb5;
  --accent-color: #22a745;
  --accent4-color: #7a40bf;

  --dark-text: #333;
  --gray-text: #767676;

  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  --dark-background-color: #1f2c3b; /* djup mörk blå/svart */
}

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


body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: #fff;
}

/* Layout */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Begränsar hero-sektionens visuella bredd (matchar referensen) */
.hero .container {
  max-width: 1320px;
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
}

.logo img {
  height: 96px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
}

.mobile-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf4ff, #ffffff);
}

.hero-bg {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.05;
}

.hero-bg-1 {
  top: 0;
  right: 0;
  background: var(--primary-color);
}

.hero-bg-2 {
  bottom: 0;
  left: 0;
  background: var(--accent4-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
}


.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  max-width: 560px;
  color: #2f2f2f;
}


.hero-content p {
  font-size: 1.125rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--gray-text);
}

.hero-note i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: #e6f2ff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.large {
  font-size: 1.125rem;
}

/* Image */
.hero-image {
  position: relative;
  max-width: 560px;
  margin-left: auto;
}


.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.image-wrapper img {
  width: 100%;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1f2c3b, transparent);
  opacity: 0.3;
}

/* Floating badge */
.floating-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.badge-icon {
  background: var(--accent-color);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-title {
  font-weight: 700;
}

/* Section */
.section {
  padding: 4rem 0;
}

.center {
  text-align: center;
}

.section-lead {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--gray-text);
}

/* Responsive */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-content {
  max-width: 600px;
}

  .hero-content h1 {
    font-size: 3.75rem;
  }

  .hero-cta {
    flex-direction: row;
  }
}

/* Problems section */
.problems-section {
  padding: 5rem 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: var(--font-family-heading);
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-text-color);
  line-height: 1.6;
}

/* Grid */
.problems-grid {
  display: grid;
  gap: 2rem;
}

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

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

/* Card */
.problem-card {
  background: #f2f7ff; /* exakt rätt ton */
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: left;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  border-color: #2563eb; /* blå outline */
  box-shadow: 0 12px 30px rgba(37,99,235,0.15);
  transform: none; /* viktigt */
}



.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.problem-card p {
  color: var(--gray-text-color);
  line-height: 1.6;
}

/* Icon */
.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* Icon colors */
.problem-icon.red    { background: #ef4444; }
.problem-icon.yellow { background: #facc15; }
.problem-icon.purple { background: #7c3aed; }
.problem-icon.blue   { background: #2563eb; }


/* ================================
   WHAT IS AI-RECEPTION
================================ */

.about-ai {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 35%,
    #f2f8ff 70%,
    var(--light-background-color) 100%
  );
}

.about-ai .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-top: 100px;
  margin-bottom: 140px;
}

.about-ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-ai-image img {
  width: 100%;
  height: auto;
  transform: translateY(50px);
  border-radius: 1.25rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-ai-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--dark-text-color);
}

.about-ai-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-text-color);
  margin-bottom: 1.25rem;
}

/* Benefits list */

.about-ai-benefits {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-ai-benefits li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-ai-benefits strong {
  display: block;
  font-size: 1rem;
  color: var(--dark-text-color);
}

.about-ai-benefits span {
  font-size: 0.95rem;
  color: var(--gray-text-color);
}

/* Link */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

/* Desktop */

@media (min-width: 1024px) {
  .about-ai-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .about-ai-image {
    order: 1;
  }

  .about-ai-content {
    order: 2;
  }
}


/* ===============================
   Benefits Section
   =============================== */

.benefits-section {
  position: relative;
  background: var(--dark-background-color);
  color: #fff;
  padding: 6rem 0;
  overflow: hidden;
}

/* Background blobs */
.benefits-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.blob-left {
  top: -80px;
  left: 20%;
  background: var(--primary-color);
}

.blob-right {
  bottom: -80px;
  right: 20%;
  background: var(--accent4-color);
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: #cbd5e1;
  font-size: 1.125rem;
}

/* Grid */
.benefits-grid {
  display: grid;
  gap: 2rem;
}

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

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

/* Card */
.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent4-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box i {
  font-size: 1.4rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #d1d5db;
  line-height: 1.6;
}

/* CTA */
.benefits-cta {
  text-align: center;
  margin-top: 4rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: var(--button-rounded-radius);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}


.use-cases-section {
  background: #ffffff;
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-text-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-text-color);
  max-width: 720px;
  margin: 0 auto;
}



.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.use-cases-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.use-case {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.use-case h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-text-color);
}

.use-case p {
  color: var(--gray-text-color);
  line-height: 1.6;
}

.use-case-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.25rem;
}

/* Gradients */
.gradient-phone {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.gradient-chat {
  background: linear-gradient(135deg, #22c55e, #ef4444);
}
.gradient-calendar {
  background: linear-gradient(135deg, #facc15, #f97316);
}
.gradient-office {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.use-cases-link {
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.use-cases-link:hover {
  text-decoration: underline;
}

.use-cases-image img {
  width: 110%;
  border-radius: 1.25rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  display: block;
  transform: translateY(-20px)
}
@media (max-width: 1024px) {
  #shgxw0u img {
    width: 100%;
  }

  #shgxw0u .relative {
    transform: none;
  }
}

/* ===============================
   Why Sweden section
   =============================== */

.why-sweden {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--light-background-color) 100%
  );
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Image */
.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Badge */
.why-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--accent-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.badge-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.badge-text {
  font-size: 0.875rem;
  color: var(--gray-text-color);
  font-weight: 500;
}

/* Content */
.why-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--dark-text-color);
}

.why-content .intro {
  font-size: 1.125rem;
  color: var(--gray-text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  color: var(--dark-text-color);
}

.feature p {
  color: var(--gray-text-color);
  line-height: 1.5;
}

/* Link */
.why-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

.why-link:hover {
  color: var(--primary-button-hover-bg-color);
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-badge {
    display: none;
  }
}

.faq-section {
  background: #ffffff;
  padding: 6rem 1rem;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark-text-color);
  margin-bottom: 0.75rem;
}

.faq-header p {
  font-size: 1.1rem;
  color: var(--gray-text-color);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border: 1.5px solid #dbe7ff;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  background: #f1f7ff;
  border-color: var(--primary-color);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-text-color);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  color: var(--gray-text-color);
  margin-bottom: 1rem;
}

.faq-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--button-rounded-radius);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-button:hover {
  background: var(--primary-color);
  color: #fff;
}

/* CTA SECTION */
.cta-section {
  position: relative;
  padding: 7rem 1rem;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent4-color)
  );
  overflow: hidden;
}

/* Decorative background */
.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  z-index: 0;
}

.cta-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: #fff;
  border-radius: 50%;
  filter: blur(90px);
}

.blob-1 {
  top: 20%;
  left: 20%;
}

.blob-2 {
  bottom: 20%;
  right: 20%;
}

/* Content */
.cta-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-container p {
  font-size: 1.35rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cta-primary {
  background: #fff;
  color: var(--primary-color);
  padding: 1.1rem 2.5rem;
  border-radius: var(--button-rounded-radius);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.cta-secondary {
  border: 3px solid #fff;
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: var(--button-rounded-radius);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Trust indicators */
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-trust i {
  color: var(--accent-color);
  margin-right: 0.4rem;
}

.site-footer {
  background: #1f2f3f;
  color: #ffffff;
  padding: 5rem 1.5rem 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  max-width: 220px;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 320px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #1f2f3f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

/* Columns */
.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-list,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.footer-contact i {
  color: var(--primary-color);
  margin-top: 0.2rem;
}

/* Bottom */
.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: 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

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

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
