* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #050505;
  background: #fff;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 52px;
  width: auto;
}

nav {
  display: flex;
  gap: 42px;
  align-items: center;
}

nav a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

nav a:last-child,
.btn {
  background: #050505;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  background: #eeece4;
  padding: 95px 0 70px;
}

.hero-content,
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: #114a5a;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 720px;
}

h2 {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.08;
  margin-bottom: 28px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

p {
  font-size: 21px;
  line-height: 1.45;
  color: #4b4b4b;
}

.hero p {
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-image img,
.rounded-image,
.course-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.hero-image img {
  height: 520px;
}

.section {
  padding: 95px 0;
}

.light {
  background: #f3f1ea;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 45px;
}

.card,
.course-card,
.contact-form,
.empty-course {
  background: #eeece4;
  border-radius: 10px;
  padding: 34px;
}

.card p {
  font-size: 18px;
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 45px;
}

.course-card {
  padding: 0;
  overflow: hidden;
}

.course-card img {
  height: 280px;
  border-radius: 0;
}

.course-body {
  padding: 32px;
}

.course-meta {
  font-size: 17px;
  color: #114a5a;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-section {
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

footer {
  background: #eeece4;
  padding: 70px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  height: 56px;
}

/* Om oss bilder */
.about-images {
  position: relative;
}

.about-images .rounded-image {
  height: 430px;
  object-fit: cover;
}

.second-image {
  position: absolute;
  width: 55%;
  right: -30px;
  bottom: -45px;
  border: 10px solid #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-list h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 40px;
}

.about-list ul {
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 22px;
  font-size: 28px;
  color: #4b4b4b;
}

.about-list li::before {
  content: "☑";
  position: absolute;
  left: 0;
  color: #9b5cf6;
  font-size: 28px;
}

/* Statistiksektion */
.stats-section {
  background: #ffffff;
  padding: 80px 0;
}

.stats-section h2 {
  text-align: center;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 70px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.stats-item {
  text-align: center;
}

.stats-item h3 {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 15px;
}

.stats-item span {
  display: block;
  height: 1px;
  background: #ddd;
  margin-bottom: 15px;
}

.stats-item p {
  font-size: 22px;
  color: #555;
}

/* Admin */
.admin-wrapper {
  width: min(1000px, 92%);
  margin: 50px auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.admin-form {
  display: grid;
  gap: 14px;
  background: #eeece4;
  padding: 28px;
  border-radius: 10px;
  margin-bottom: 45px;
}

.admin-form label {
  font-weight: 700;
}

.admin-course-list {
  display: grid;
  gap: 24px;
}

.admin-course-card {
  background: #f3f1ea;
  padding: 24px;
  border-radius: 10px;
}

.admin-course-card img,
.admin-preview {
  width: 220px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.danger {
  background: #9b1c1c;
}

/* Mobil */
@media (max-width: 900px) {
  .nav {
    height: auto;
    padding: 18px 0;
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero-content,
  .split,
  .cards,
  .course-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-image img {
    height: auto;
  }

  .section {
    padding: 65px 0;
  }

  .second-image {
    position: static;
    width: 100%;
    border: none;
    margin-top: 18px;
  }

  .stats-section h2 {
    font-size: 36px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-list h2 {
    font-size: 38px;
  }

  .about-list li {
    font-size: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand span {
  color: #1A365D;
  font-family: "Proxima Nova", Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.logo {
  height: 52px;
  width: auto;
}

.services-title{
    text-align:center;
    font-size:52px;
    font-weight:400;
    margin-bottom:18px;
    color:#000;
}

.services-subtitle{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px auto;
    font-size:22px;
    line-height:1.25;
    color:#3d4a59;
    font-weight:400;
}

.footer{
    background:#F4F2EC;
    padding:50px 110px 45px;
}

.footer-top{
    border-bottom:1px solid #e2e2dc;
    padding-bottom:42px;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-brand img{
    width:74px;
    height:auto;
}

.footer-brand span{
    color:#1A365D;
    font-family:"Proxima Nova", Arial, sans-serif;
    font-size:34px;
    font-weight:400;
}

.footer-middle{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:42px 0;
    border-bottom:1px solid #e2e2dc;
}

.footer-middle a,
.footer-info{
    font-size:22px;
    color:#000;
    text-decoration:none;
    font-weight:500;
}

.footer-info{
    color:#1A365D;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:45px;
}

.footer-bottom p{
    font-size:20px;
    color:#333;
}

.linkedin{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#173F5F;
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
}

body {
  font-family: "Inter", Arial, sans-serif;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand .logo {
  height: 50px;
  width: auto;
}

.brand span,
.footer-brand span {
  color: #1A365D;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.brand span {
  font-size: 31px;
}

nav a {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.footer-brand span {
  font-size: 32px;
}

.footer-brand img {
  width: 64px;
  height: auto;
}

.contact-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-section p {
  font-size: 20px;
  line-height: 1.55;
  max-width: 720px;
}

@media (max-width: 900px) {
  .brand span {
    font-size: 24px;
  }

  .brand .logo {
    height: 42px;
  }

  nav a {
    font-size: 14px;
  }

  .footer {
    padding: 45px 24px;
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-brand span {
    font-size: 24px;
  }

  .footer-brand img {
    width: 52px;
  }
}

@media (max-width: 900px) {

  nav a:last-child {
    display: none;
  }

}

/* ===== MOBILFIX: iPhone + Android ===== */

@media (max-width: 600px) {

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav {
    height: auto;
    padding: 12px 0;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    justify-content: center;
    gap: 10px;
  }

  .brand .logo {
    height: 34px;
  }

  .brand span {
    font-size: 22px;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 6px;
  }

  nav a {
    font-size: 12px;
    font-weight: 700;
  }

  .hero {
    padding: 42px 0;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
    max-width: 100%;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.45;
  }

  .btn {
    font-size: 16px;
    padding: 13px 20px;
  }

  .hero-image img {
    height: auto;
  }
}

@media (max-width: 430px) {

  h1 {
    font-size: 34px;
  }

  .brand span {
    font-size: 20px;
  }

  .brand .logo {
    height: 32px;
  }

  nav {
    gap: 8px;
  }

  nav a {
    font-size: 11px;
  }

  .hero p {
    font-size: 17px;
  }
}

section {
    scroll-margin-top: 80px;
}

.course-body p:last-of-type {
    margin-bottom: 25px;
}

.course-signup {
    display: inline-block;
}