/* ─────────────────────────────────────────────
   Assistans Runt Hörnan AB  ·  style.css
   ─────────────────────────────────────────────  */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #FAFAF8;
  --warm-white:   #FFFFFF;
  --charcoal:     #2C3E50;
  --soft-black:   #34495E;
  --teal:         #1A5276;
  --teal-light:   #2E7BA0;
  --teal-pale:    #EBF5FB;
  --gold:         #95A5A6;
  --muted:        #7F8C8D;
  --border:       rgba(26,82,118,0.1);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.1);
  --coral:        #34495E;
  --coral-light:  #ECF0F1;
  --purple:       #5D6D7B;
  --purple-light: #F8F9FA;
  --cyan:         #16A085;
  --cyan-light:   #E8F8F5;
  --orange:       #7F8C8D;
  --orange-light: #F5F6FA;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: #F8F9FA;
  color: #2C3E50;
  line-height: 1.72;
  overflow-x: hidden;
}

/* ── UTILITY ───────────────────────────────────── */
.section-tag {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; width: 26px; height: 2px;
  background: var(--teal); flex-shrink: 0;
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 600; line-height: 1.1;
  color: #2C3E50; margin-bottom: 1.2rem;
}
.section-h2 em { font-style: italic; color: #1A5276; }

.section-lead {
  font-size: clamp(0.92rem, 2vw, 1rem); font-weight: 300; color: var(--muted);
  max-width: 560px; line-height: 1.8;
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(135deg, #1A5276, #2E7BA0);
  color: #fff;
  padding: 0.9rem 2rem; border-radius: 6px;
  text-decoration: none; font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26,82,118,0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: '';500; border-bottom: 2px solid var(--charcoal); padding-bottom: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--teal);
  transform: translateX(4px);

  background: rgba(255,255,255,0.2);
  transition: left 0.3s;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2E7BA0, #1A5276);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,82,118,0.3);
}
.btn-primary:hover:before { left: 100%; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--charcoal); text-decoration: none; font-size: 0.88rem;
  font-weight: 400; border-bottom: 1px solid var(--charcoal); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--teal); border-color: var(--teal); }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.18s; }

/* Advanced animations */
@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(61,112,104,0.2); }
  50% { box-shadow: 0 0 40px rgba(61,112,104,0.4); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-6px); }
  75% { transform: translateY(2px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes zoom-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ── NAV ───────────────────────────────────────── */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 4rem;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #E0E6ED;
  transition: box-shadow 0.3s, padding 0.3s;
}
nav#main-nav.scrolled { box-shadow: var(--shadow-sm); padding: 0.7rem 4rem; }

.nav-logo {
  display: flex; align-items: center; gap: 0.9rem;
  text-decoration: none; z-index: 201;
}
.nav-logo-img {
  height: 56px; width: auto; object-fit: contain;
  display: block; transition: height 0.3s;
}
nav#main-nav.scrolled .nav-logo-img { height: 48px; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600;
  color: #2C3E50; line-height: 1.2;
}
.nav-logo-text small {
  display: block; font-size: 0.56rem; font-family: 'Outfit', sans-serif;
  font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: #1A5276; margin-top: 2px;
}

.nav-links {
  display: flex; gap: 2.4rem; list-style: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-links a {
  text-decoration: none; color: #2C3E50;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: linear-gradient(90deg, #1A5276, #2E7BA0);
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-links a:hover { 
  color: #1A5276; 
  transform: translateY(-2px);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #1A5276; }

.nav-cta {
  background: #1A5276; color: #fff;
  padding: 0.54rem 1.3rem; border-radius: 2px;
  text-decoration: none; font-size: 0.77rem;
  font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #2C3E50; transform: translateY(-1px); }

.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; padding: 0.4rem;
  cursor: pointer; z-index: 201;
}
.mobile-menu-toggle span {
  width: 22px; height: 2px; background: var(--charcoal);
  transition: all 0.3s; display: block;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── TOP BANNER ────────────────────────────────── */
.top-banner {
  background: linear-gradient(135deg, #1A5276 0%, #2E7BA0 100%);
  color: #fff;
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.5;
}
.banner-item {
  flex: 1;
  min-width: 200px;
}
.banner-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}
.banner-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  display: none;
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 70px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #FDFAF5 0%, var(--cream) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(61,112,104,0.08) 0%, transparent 70%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #EBF5FB, #F5F7FA);
  color: #1A5276;
  padding: 0.44rem 1.1rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
  animation: slideInFromLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 2px 12px rgba(26,82,118,0.12);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  color: #2C3E50;
  margin-bottom: 1.6rem;
  animation: slideInFromLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
.hero-h1 em {
  font-style: italic;
  color: #1A5276;
  display: block;
  background: linear-gradient(135deg, #1A5276, #2E7BA0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: clamp(0.93rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.6rem;
  line-height: 1.85;
  animation: slideInFromLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  animation: slideInFromLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.hero-stats {
  display: flex;
  gap: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(61,112,104,0.15);
  animation: slideInFromLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  transition: all 0.3s;
}
.stat-num:hover {
  color: var(--orange);
  transform: scale(1.05);
}
.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-weight: 500;
}

.hero-right {
  position: relative; overflow: hidden;
}
.hero-image-wrapper {
  position: absolute; inset: 0;
  animation: slideInFromRight 0.8s ease-out;
}
.hero-image {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92);
  animation: zoom-in 1.2s ease-out backwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,112,104,0.15) 0%, rgba(0,0,0,0.05) 100%);
}

/* ── SERVICES ──────────────────────────────────── */
#tjanster { padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem); background: #FFFFFF; }
.services-header { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
  border: 1px solid #E0E6ED; border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  animation: fadeInScale 0.6s ease-out backwards;
}
.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: linear-gradient(180deg, #1A5276, #34495E);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 1;
}
.service-card:nth-child(2) { background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%); }
.service-card:nth-child(2)::before { background: linear-gradient(180deg, #34495E, #7F8C8D); }
.service-card:nth-child(3) { background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%); }
.service-card:nth-child(3)::before { background: linear-gradient(180deg, #5D6D7B, #1A5276); }
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 28px rgba(26,82,118,0.15);
  border-color: #1A5276;
}
.service-card:hover::before { transform: scaleY(1); }

.service-image-wrap {
  width: 100%; height: 220px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #1A5276, #2E7BA0);
}
.service-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-image-wrap img {
  transform: scale(1.08) rotate(2deg);
}

.service-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal-pale); display: flex;
  align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; margin-bottom: 0.7rem; color: var(--charcoal);
}
.service-card p {
  font-size: 0.87rem; color: var(--muted); line-height: 1.72; flex: 1;
}
.service-pill {
  display: inline-block;
  margin-top: 1.1rem;
  background: linear-gradient(135deg, var(--teal-pale), var(--orange-light));
  color: var(--teal);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(61,112,104,0.2);
}
.service-pill:hover {
  background: linear-gradient(135deg, var(--teal), var(--orange));
  color: white;
  transform: scale(1.05);
}

/* ── ABOUT ─────────────────────────────────────── */
#om-oss {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}
.about-visual {
  position: relative;
  animation: slideInFromLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 12px 40px rgba(61,112,104,0.25);
  border: 2px solid rgba(61,112,104,0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-visual:hover .about-image-wrapper {
  box-shadow: 0 20px 60px rgba(61,112,104,0.35);
  transform: translateY(-8px);
}
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-visual:hover .about-image {
  transform: scale(1.05);
}
.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: -1.5rem;
  left: -0.6rem;
  line-height: 1;
  pointer-events: none;
}
.quote-card {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--orange-light) 100%);
  padding: 2.8rem 2.5rem 2rem;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(61,112,104,0.2);
  border: 1px solid rgba(61,112,104,0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInFromLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
.quote-card:hover {
  box-shadow: 0 12px 40px rgba(61,112,104,0.3);
  transform: translateY(-4px);
}
.quote-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.quote-attr {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.founder-badge {
  position: absolute;
  bottom: -1.3rem;
  right: 1.8rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  padding: 1rem 1.6rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(61,112,104,0.3);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.founder-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(61,112,104,0.4);
}
.founder-badge .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.founder-badge .role {
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 3px;
  font-weight: 500;
}

.about-content {
  padding-top: 0;
  animation: slideInFromRight 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-content > p {
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.fact-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.fact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: rgba(61,112,104,0.05);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInFromRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.fact-item:nth-child(2) { animation-delay: 0.1s; }
.fact-item:nth-child(3) { animation-delay: 0.2s; }
.fact-item:nth-child(4) { animation-delay: 0.3s; }
.fact-item:hover {
  background: rgba(61,112,104,0.1);
  border-left-color: var(--teal);
  transform: translateX(6px);
}
.fact-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  flex-shrink: 0;
  margin-top: 0.6rem;
  box-shadow: 0 2px 8px rgba(255,107,107,0.3);
}
.fact-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}
.fact-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* ── LANGUAGES ─────────────────────────────────── */
#sprak {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a3f3b 100%);
  color: white;
  padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#sprak::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(61,112,104,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}
#sprak .section-tag { justify-content: center; color: var(--orange); }
#sprak .section-tag::before { background: var(--orange); }
#sprak .section-h2 { color: white; }
#sprak .section-lead { color: rgba(255,255,255,0.7); margin: 0 auto 3.2rem; }

.lang-cards {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  max-width: 100%; margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lang-card {
  background: linear-gradient(135deg, #F0F4F8 0%, #F3F6FA 100%);
  border: 1px solid #D0D8E0;
  padding: 2rem 2.4rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  animation: slideInFromLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.lang-card:nth-child(2) { animation-delay: 0.1s; }
.lang-card:nth-child(3) { animation-delay: 0.2s; }
.lang-card:nth-child(4) { animation-delay: 0.3s; }
.lang-card:hover {
  background: linear-gradient(135deg, #C8DEEE 0%, #D5E8F1 100%);
  border-color: #1A5276;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 24px rgba(26,82,118,0.2);
}
.lang-flag {
  width: 80px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  animation: float 4s ease-in-out infinite;
}
.lang-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; color: #1A5276;
}
.lang-sub {
  font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #34495E;
}

/* ── CONTACT ───────────────────────────────────── */
#kontakt {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.contact-left {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a3f3b 100%);
  color: white;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,107,0.05) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite;
  z-index: 0;
}
.contact-left > * { position: relative; z-index: 1; }
.contact-left .section-tag { color: var(--orange); }
.contact-left .section-tag::before { background: var(--orange); }
.contact-left .section-h2 { color: white; margin-bottom: 1rem; }
.contact-left > p {
  color: rgba(255,255,255,0.8); margin-bottom: 2.8rem;
  font-size: clamp(0.9rem, 2vw, 0.95rem); line-height: 1.7;
}

.contact-items { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInFromLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.contact-item:nth-child(2) { animation-delay: 0.1s; }
.contact-item:nth-child(3) { animation-delay: 0.2s; }
.contact-item:nth-child(4) { animation-delay: 0.3s; }
.contact-item:hover {
  background: rgba(255,255,255,0.14);
  border-left-color: var(--cyan);
  transform: translateX(10px);
}
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,107,107,0.3), rgba(61,112,104,0.3));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  border: 1px solid rgba(255,107,107,0.3);
  transition: all 0.3s;
}
.contact-item:hover .contact-item-icon {
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  color: white;
  transform: scale(1.1);
}
.contact-item-label {
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.22rem; font-weight: 600;
}
.contact-item a, .contact-item span {
  color: rgba(255,255,255,0.95); text-decoration: none; font-size: 0.94rem; display: block;
}
.contact-item a:hover { text-decoration: underline; color: var(--orange); }

.contact-right {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  animation: slideInFromRight 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-right .section-h2 { font-size: clamp(1.8rem, 3vw, 2rem); margin-bottom: 2rem; }

.form-group {
  margin-bottom: 1.15rem;
  animation: fadeInScale 0.6s ease-out;
}
.form-group label {
  display: block; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
  font-weight: 600;
  transition: color 0.3s;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.78rem 0.95rem;
  border: 1px solid #E0E6ED; border-radius: 8px;
  background: #FFFFFF; font-family: 'Outfit', sans-serif;
  font-size: 0.89rem; color: #2C3E50; outline: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-appearance: none; appearance: none;
}
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: #2E7BA0;
  box-shadow: 0 0 12px rgba(26,82,118,0.08);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1A5276;
  box-shadow: 0 0 0 4px rgba(26,82,118,0.15);
  transform: translateY(-2px);
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label {
  color: #1A5276;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(61,112,104,0.3);
  position: relative;
  overflow: hidden;
}
.btn-submit::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-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(61,112,104,0.4);
}
.btn-submit:hover:not(:disabled)::before { left: 100%; }
.btn-submit:disabled {
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-light));
  cursor: not-allowed;
  transform: none;
  opacity: 0.7;
}

@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner { animation: spin 0.8s linear infinite; }

.form-status {
  margin-top: 0.85rem; font-size: 0.83rem; min-height: 1.2em; text-align: center;
}
.form-status.success { color: var(--teal); }
.form-status.error   { color: #c0392b; }

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: rgba(255,255,255,0.8);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(26,82,118,0.05) 0%, transparent 50%);
  pointer-events: none;
}
footer > * { position: relative; z-index: 1; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: white;
  animation: slideInFromLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-brand span { display: flex; flex-direction: column; }
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  opacity: 0.95;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInDown 0.8s ease-out;
}
.footer-brand:hover .footer-logo {
  opacity: 1;
  transform: scale(1.12) translateY(-3px);
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.footer-brand small {
  display: block;
  font-size: 0.58rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2E7BA0;
  margin-top: 4px;
  animation: slideInFromLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
footer > p {
  font-size: 0.8rem;
  animation: slideInFromLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  animation: slideInFromRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.76rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding-bottom: 2px;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-nav a:hover { 
  color: white;
  transform: translateY(-2px);
}
.footer-nav a:hover::after { width: 100%; }

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
  nav#main-nav {
    padding: 0.85rem 1.5rem;
  }
  nav#main-nav.scrolled { padding: 0.7rem 1.5rem; }

  .mobile-menu-toggle { display: flex; }

  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px; max-width: 85vw;
    background: var(--warm-white); box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    flex-direction: column; gap: 0; padding: 5rem 2rem 2rem;
    transform: translateX(100%); opacity: 0; pointer-events: none;
  }
  .nav-links.active {
    transform: translateX(0); opacity: 1; pointer-events: all;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block; padding: 1rem 0; font-size: 0.9rem;
  }

  .nav-cta { display: none; }
  .nav-logo-text { font-size: 0.95rem; }

  .hero {
    grid-template-columns: 1fr; min-height: auto;
  }
  .hero-left { padding: 4rem 1.5rem 3rem; }
  .hero-right { min-height: 300px; }
  .hero-stats { gap: 1.5rem; }

  #tjanster, #sprak { padding: 4rem 1.5rem; }
  .services-grid { gap: 1.2rem; }

  #om-oss {
    grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem;
  }
  .founder-badge { position: static; margin-top: 1.2rem; width: fit-content; }

  #kontakt { grid-template-columns: 1fr; min-height: auto; }
  .contact-left, .contact-right { padding: 3.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  footer {
    flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem;
  }
  .footer-brand { font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; text-align: center; }
  .hero-stats { flex-direction: column; gap: 1.2rem; }
  .hero-stats > div { text-align: center; }
}
