/* ============================================================
   bryllupsverdi — design system
   ============================================================ */

/* VARIABLER
   ---------------------------------------------------------- */
:root {
  /* Palett */
  --cream:         #FAF7F2;
  --beige:         #EDE6D9;
  --rose:          #E8C5B8;
  --terra:         #C4705A;
  --burgundy:      #6B2D3E;
  --burgundy-dark: #541F2F;
  --text:          #2D3B35;
  --text-muted:    #6B7B74;
  --white:         #FFFFFF;

  /* Typografi */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Størrelser */
  --radius:    10px;
  --radius-sm:  6px;
  --shadow:    0 4px 24px rgba(45, 59, 53, .10);
  --shadow-lg: 0 12px 40px rgba(45, 59, 53, .15);
  --transition: .25s ease;

  /* Layout */
  --nav-h: 70px;
}

/* RESET
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 3px;
}

/* TYPOGRAFI — Cormorant kun på h ≥ 18 px
   ---------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.35;
}

/* LAYOUT
   ---------------------------------------------------------- */
.container {
  width: min(1160px, 90%);
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, 90%);
  margin-inline: auto;
}

.section {
  padding-block: 100px;
}

.section--beige { background: var(--beige); }
.section--dark  { background: var(--text); color: var(--white); }

/* Seksjons-labels og titler */
.section__label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .75rem;
  display: block;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* KNAPPER
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .875rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--text);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

/* SCROLL-ANIMASJONER
   ---------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
[data-delay="4"] { transition-delay: .48s; }

/* For brukere som foretrekker redusert bevegelse */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(45,59,53,.08);
}

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

.nav__logo {
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav__link {
  font-size: .875rem;
  font-weight: 450;
  color: var(--text-muted);
  text-decoration: none;
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.nav__link:hover { color: var(--text); }

.nav__link--cta {
  font-weight: 500;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  margin-left: .5rem;
}
.nav__link--cta:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* Mobilmeny-toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Språkvelger */
.lang-switch {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.lang-switch__btn {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--text-muted);
  padding: .25rem .4rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.lang-switch__btn:hover { color: var(--text); }
.lang-switch__btn--active {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
  text-align: center;
}

/* PLACEHOLDER — fjern <div class="hero__placeholder"> og legg inn
   <img class="hero__bg" src="assets/images/hero.webp"
        alt="Bryllupspar" width="1920" height="1080" fetchpriority="high">
   når bildet er klart */
.hero__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(196,112,90,.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 20% 85%, rgba(107,45,62,.14) 0%, transparent 55%),
    linear-gradient(165deg, #FAF7F2 0%, #EDE6D9 60%, #E8C5B8 100%);
}

/* Dekorativt element */
.hero__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at 25% 30%, rgba(196,112,90,.3) 0%, transparent 0),
    radial-gradient(circle 1px at 75% 70%, rgba(107,45,62,.2) 0%, transparent 0);
  background-size: 60px 60px;
  opacity: .4;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay over ekte bilde */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.20) 45%,
    rgba(0,0,0,.55) 100%
  );
}

/* Hero med ekte foto — hvit tekst */
.hero--photo .hero__eyebrow { color: rgba(255,255,255,.85); }

.hero--photo .hero__title {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.hero--photo .hero__title em { color: var(--rose); }

.hero--photo .hero__subtitle { color: rgba(255,255,255,.82); }

.hero--photo .btn--outline {
  border-color: rgba(255,255,255,.65);
  color: var(--white);
}
.hero--photo .btn--outline:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.hero--photo .hero__scroll { color: rgba(255,255,255,.65); }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
}

.hero__title {
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--burgundy);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

/* Scrollpil */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  color: var(--text-muted);
  text-decoration: none;
  animation: scroll-bounce 2.2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--terra); }

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ============================================================
   PLACEHOLDER-SEKSJONER (fylles ut neste runde)
   ============================================================ */
.why,
.demos,
.pricing,
.process,
.about,
.faq,
.contact {
  padding-block: 100px;
}

.why     { background: var(--beige); }
.demos   { background: var(--cream); }
.pricing { background: var(--beige); }
.process { background: var(--cream); }
.about   { background: var(--beige); }
.faq     { background: var(--cream); }
.contact { background: var(--text); color: var(--white); }

.contact .section__title { color: var(--white); }
.contact .section__label { color: var(--rose); }

/* FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 3rem 1rem;
  text-align: center;
  font-size: .875rem;
  line-height: 2;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}

.footer__note a {
  color: rgba(255,255,255,.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__note a:hover { color: var(--white); }

/* ============================================================
   RESPONSIV — MOBIL
   ============================================================ */
@media (max-width: 768px) {
  .section { padding-block: 72px; }

  /* Nav: mobil hamburger-meny */
  .nav__toggle { display: flex; }

  .nav__menu {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 99;
  }

  .nav__menu.open { display: flex; }

  .nav__link {
    font-size: 1.1rem;
    padding: .6rem 1.2rem;
  }

  .nav__link--cta {
    margin-left: 0;
    padding: .6rem 1.8rem;
  }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 2rem); }

  .hero__title { letter-spacing: -.02em; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
  .hero { min-height: 100dvh; }
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why { background: var(--beige); }

.why__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

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

.why__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.why__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,112,90,.13);
  border-radius: 10px;
  color: var(--terra);
  flex-shrink: 0;
}

.why__card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.why__card-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   DEMO TEMPLATES SECTION
   ============================================================ */
.demos { background: var(--cream); }

.demos__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.demos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.demo-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.demo-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Live iframe previews */
.demo-card__preview {
  height: 260px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--beige);
}

.demo-card__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 960px;
  border: none;
  transform-origin: 0 0;
  transform: scale(0.271);
  pointer-events: none;
}

.demo-card__preview-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  text-decoration: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.demo-card__preview-link span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.45);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
}
.demo-card:hover .demo-card__preview-link { opacity: 1; }

.demo-card__body {
  padding: 1.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.demo-card__tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
}

.demo-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

.demo-card__desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.demo-card__fits {
  font-size: .8rem;
  color: var(--text-muted);
  font-style: italic;
}

.demo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--burgundy);
  text-decoration: none;
  margin-top: .25rem;
  transition: gap var(--transition);
}

.demo-card__cta:hover { gap: .7rem; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.pricing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pricing__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: .13;
  mix-blend-mode: multiply;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.price-card--featured {
  background: var(--text);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  padding-top: 2.5rem;
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  translate: -50% 0;
  background: var(--terra);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.price-card--featured .price-card__name { color: var(--white); }

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}

.price-card__amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
}

.price-card--featured .price-card__amount { color: var(--rose); }

.price-card__currency {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-card--featured .price-card__currency { color: rgba(255,255,255,.55); }

.price-card__divider {
  height: 1px;
  background: var(--beige);
}

.price-card--featured .price-card__divider { background: rgba(255,255,255,.12); }

.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.price-card--featured .price-card__features li { color: rgba(255,255,255,.75); }

.price-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.25' stroke='%23C4705A' stroke-width='1.25'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23C4705A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.price-card--featured .price-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.25' stroke='%23E8C5B8' stroke-width='1.25'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23E8C5B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.price-card--featured .btn--outline {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.price-card--featured .btn--outline:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.pricing__note {
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 2rem;
}


/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process { background: var(--cream); }

.process__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

.process__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 1.5px;
  background: var(--beige);
  z-index: 0;
}

.process__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
}

.process__step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px solid var(--beige);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--terra);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.process__step:hover .process__step-num {
  background: var(--rose);
  border-color: var(--terra);
}

.process__step-body {
  padding-top: .75rem;
}

.process__step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.process__step-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process__step-note {
  display: inline-block;
  margin-top: .5rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(196,112,90,.1);
  padding: .2rem .7rem;
  border-radius: 50px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: var(--beige); }

.about__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}

.about__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--rose);
  position: relative;
}

/* Placeholder — fjern når bilde er klart */
.about__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(107,45,62,.4);
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

.about__img-placeholder svg { opacity: .5; }

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

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

.about__text p {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.8;
}

.about__quote {
  background: var(--white);
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  font-style: italic;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq { background: var(--cream); }

.faq__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--beige);
}

.faq__item summary {
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 500;
  font-size: .97rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  color: var(--text);
  transition: color var(--transition);
  user-select: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%236B7B74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}

.faq__item[open] summary {
  color: var(--burgundy);
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__answer {
  padding-bottom: 1.5rem;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
}

.faq__answer a {
  color: var(--burgundy);
  text-underline-offset: 3px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--text); color: var(--white); }

.contact .section__label { color: var(--rose); }
.contact .section__title { color: var(--white); }

.contact__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.contact__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-top: .75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }

.form-group select option { background: #2D3B35; color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(255,255,255,.1);
}

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

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
}

.form-submit .btn {
  min-width: 220px;
}

.form-message {
  font-size: .88rem;
  text-align: center;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-message--success {
  background: rgba(150,200,150,.15);
  color: #a8e6a8;
  border: 1px solid rgba(150,200,150,.3);
}

.form-message--error {
  background: rgba(220,100,100,.12);
  color: #f4a0a0;
  border: 1px solid rgba(220,100,100,.25);
}

/* ============================================================
   FOOTER (utvidet)
   ============================================================ */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 3rem 1rem 2.5rem;
  text-align: center;
  font-size: .875rem;
  line-height: 2;
  color: rgba(255,255,255,.5);
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  display: block;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__links a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .82rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

.footer__note a {
  color: rgba(255,255,255,.4);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__note a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   TILLEGGSRESPONSIV
   ============================================================ */
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .demos__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-wrap { aspect-ratio: 4/3; max-width: 400px; }
}

@media (max-width: 768px) {
  .why__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .form-row { grid-template-columns: 1fr; }
  .process__steps::before { left: 23px; }
  .process__step { grid-template-columns: 48px 1fr; gap: 1rem; }
  .process__step-num { width: 48px; height: 48px; font-size: 1.1rem; }
}
