/* Auto-extracted from flyttfirma-[city].html page template */
/* ── NAVBAR ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  display: flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
  min-height: 44px;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: #f3f4f6;
  color: #1e3a8a;
}
.nav-cta {
  background: #f97316 !important;
  color: white !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: #ea6c0a !important;
  color: white !important;
}
.mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: #374151;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 2rem;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  .nav-links li a {
    padding: 0.75rem 1.2rem;
    min-height: 48px;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-btn {
    display: flex;
  }
}

/* ── FOOTER ── */
footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 2rem 2rem;
  margin-top: 5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img {
  height: 38px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 1rem;
  display: block;
  transition: opacity 0.3s ease;
}
.footer-brand img:hover {
  opacity: 1;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #f97316;
}
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT FORM ── */
.form-section {
  padding: 5rem 2rem;
  background: #f8fafc;
}
.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.form-header h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.form-header p {
  color: #64748b;
  font-size: 1.05rem;
}
.form-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fafafa;
  color: #0f172a;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--form-accent, #f97316);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.check-item:has(input:checked) {
  border-color: var(--form-accent, #f97316);
  background: #fff7f0;
}
.check-item input {
  width: 16px;
  height: 16px;
  accent-color: var(--form-accent, #f97316);
  cursor: pointer;
  flex-shrink: 0;
}
.check-item span {
  font-size: 0.88rem;
  color: #374151;
}
.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--form-accent, #f97316);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
  font-family: inherit;
}
.form-submit:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.form-note {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 1.2rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success .success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-size: 1.8rem;
  color: #10b981;
  margin-bottom: 0.75rem;
}
.form-success p {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.form-success a {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--form-accent, #f97316);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 1.5rem 1.25rem;
  }
  .form-section {
    padding: 3rem 1.5rem;
  }
  .form-header h2 {
    font-size: 1.8rem;
  }
  .form-header p {
    font-size: 0.95rem;
  }
  body {
    font-size: 14px;
  }
  header {
    height: 60px;
  }
  nav {
    height: 60px;
    padding: 0 1rem;
  }
  .nav-logo img {
    height: 38px;
  }
  .nav-links li a {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 475px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 1.25rem 1rem;
  }
  .form-section {
    padding: 2.5rem 1rem;
  }
  .form-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .form-header p {
    font-size: 0.9rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group label {
    font-size: 0.85rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
  }
  .form-submit {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  .form-note {
    font-size: 0.8rem;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 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.05);
  animation: slideDown 0.6s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--accent-orange);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.cta-button {
  background: var(--accent-orange);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.cta-button:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 2rem;
  position: relative;
  background: white;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(30, 58, 138, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -30px) scale(1.05);
  }
}
.hero-content {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none;
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-label {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-orange);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(249, 115, 22, 0.2);
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  color: var(--accent-orange, #f97316);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(249, 115, 22, 0.2);
  z-index: -1;
  transform: skew(-5deg);
}
.hero p {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent-orange);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}
.btn-secondary {
  background: white;
  color: var(--primary-blue);
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-blue);
}
.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
.stat {
  animation: fadeInUp 0.8s ease both;
}
.stat:nth-child(1) {
  animation-delay: 0.4s;
}
.stat:nth-child(2) {
  animation-delay: 0.5s;
}
.stat:nth-child(3) {
  animation-delay: 0.6s;
}
.stat-number {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: block;
  line-height: 1;
}
.stat-label {
  color: var(--gray-text);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.3rem;
}
.hero-image {
  position: relative;
}
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .stat {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}
.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.hero-badge-title {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.1rem;
  display: block;
}
.hero-badge-value {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
}

/* Services Section */
.services {
  padding: 8rem 2rem;
  background: var(--light-bg);
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}
.section-label {
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}
.section-description {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.7;
}
.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.service-card {
  flex: 0 0 calc(33.333% - 1.7rem);
  min-width: 300px;
}
.service-card {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-orange), #fb923c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
  transition: transform 0.4s ease;
}
.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}
.service-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 800;
}
.service-card p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.service-features {
  list-style: none;
  margin-bottom: 2rem;
}
.service-features li {
  padding: 0.6rem 0;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: "✓";
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.2rem;
}
.service-link {
  color: var(--accent-orange);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.service-link:hover {
  gap: 15px;
}

/* Why Choose Us */
.why-choose {
  padding: 8rem 2rem;
  background: white;
  max-width: 1400px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.why-item {
  text-align: center;
  padding: 2rem;
  opacity: 1;
  transform: translateY(0);
}
.why-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.1),
    rgba(249, 115, 22, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  transition: transform 0.4s ease;
}
.why-item:hover .why-icon {
  transform: scale(1.1) rotate(10deg);
}
.why-item h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 800;
}
.why-item p {
  color: var(--gray-text);
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  opacity: 0.5;
}
.testimonials .section-label {
  color: var(--accent-orange);
}
.testimonials .section-title {
  color: white;
}
.testimonials .section-description {
  color: rgba(255, 255, 255, 0.8);
}
.testimonials-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.stars {
  color: var(--accent-orange);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.95;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-orange), #fb923c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.author-info h4 {
  font-weight: 700;
  font-size: 1.1rem;
}
.author-info p {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero-content {
    order: 1;
  }
  .hero-image {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .services-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .services-grid .service-card {
    flex: 1 0 100%;
    min-width: unset;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 2rem 1.25rem !important;
    gap: 2rem;
  }
  .hero h1 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .services-grid,
  .testimonials-grid {
    gap: 1.5rem;
  }
  .services-grid .service-card {
    flex: 1 0 100%;
    min-width: unset;
  }
  .service-card,
  .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }
}
@media (max-width: 475px) {
  .hero {
    padding: 1.5rem 1rem !important;
    gap: 1.5rem;
    margin-top: 65px;
  }
  .hero h1 {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  .hero-label {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .hero-buttons {
    gap: 0.5rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }
  .hero-buttons span {
    display: none;
  }
  .hero-image {
    max-height: 400px;
  }
  .hero-stats {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .stat {
    flex: 1;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.75rem;
    margin-top: 0.2rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .section-description {
    font-size: 1rem;
  }
  .service-card,
  .testimonial-card {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .service-card h3,
  .testimonial-card h3 {
    font-size: 1.3rem;
  }
  .service-card p,
  .testimonial-card p {
    font-size: 0.95rem;
  }
}

/* ── Här finns vi ── */
.city-pill {
  background: #eff6ff;
  color: #1e3a8a;
  border: 2px solid #bfdbfe;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
  cursor: default;
}
.city-pill:hover {
  background: #fff7ed;
  color: #c2410c;
  border-color: #f97316;
  transform: translateY(-2px);
}
a.city-pill {
  cursor: pointer;
  text-decoration: none;
}
.city-pill--active {
  background: #fff7ed;
  color: #c2410c;
  border-color: #f97316;
  cursor: default;
  font-weight: 700;
}
.area-group {
  margin-bottom: 2.5rem;
}
.area-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 0.9rem;
}
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* CSS Variables */
:root {
  --primary-blue: #1e3a8a;
  --accent-orange: #f97316;
  --gray-text: #64748b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --dark: #0f172a;
  --success-green: #10b981;
}
