:root {
  --primary: #4a2c3e;
  --primary-dark: #2d1a28;
  --accent: #d4af37;
  --accent-dark: #b8860b;
  --charcoal: #1a1a1a;
  --ivory: #f5f0e8;
  --light-bg: #faf8f5;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --border: #e8e3db;
  --shadow: 0 10px 30px rgba(26, 26, 26, 0.15);
  --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.25);
  --radius: 8px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light-bg);
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(90deg, var(--charcoal) 0%, rgba(26, 26, 26, 0.95) 100%);
  color: white;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
}

.logo p {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color 0.25s ease;
  position: relative;
}

.nav a:hover {
  color: var(--accent);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin: 0 0 20px 0;
  font-weight: 600;
}

h1 {
  font-size: 72px;
  margin: 20px 0 30px 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
}

.lead {
  font-size: 20px;
  margin: 0 0 30px 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.5;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--charcoal);
  border-color: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section.alternate {
  background: var(--ivory);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  margin: 0 0 10px 0;
  color: var(--primary);
  font-weight: 700;
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Content Grid */
.content-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.content-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.card h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  color: var(--primary);
  font-weight: 700;
}

.card p {
  margin: 15px 0;
  color: var(--text-light);
  line-height: 1.8;
}

.card p:first-of-type {
  margin-top: 0;
}

.card p:last-of-type {
  margin-bottom: 0;
}

/* Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.spec-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.spec-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.spec-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin: 0 0 10px 0;
  font-weight: 600;
}

.spec-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0 15px 0;
}

.spec-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature {
  padding: 30px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.feature h4 {
  font-size: 18px;
  margin: 0 0 12px 0;
  color: var(--primary);
  font-weight: 700;
}

.feature p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Big Card */
.big-card {
  background: white;
  padding: 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 8px solid var(--accent);
  max-width: 900px;
  margin: 0 auto;
}

.big-card p {
  font-size: 18px;
  line-height: 1.8;
  margin: 25px 0;
  color: var(--text);
}

.big-card p:first-of-type {
  margin-top: 0;
}

.big-card p:last-of-type {
  margin-bottom: 0;
}

.cta-encourage {
  font-weight: 600;
  color: var(--primary);
  font-size: 20px;
  text-align: center;
}

/* Trygg Section */
.trygg-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
  color: white;
}

.trygg-section .section-header h2 {
  color: var(--accent);
}

.trygg-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.trygg-section .card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.trygg-section .card h3 {
  color: var(--primary);
}

.trygg-cta {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  margin-top: 50px;
}

.trygg-cta h3 {
  font-size: 32px;
  margin: 0 0 10px 0;
  color: var(--accent);
  font-weight: 700;
}

.trygg-cta p {
  font-size: 16px;
  margin: 0 0 25px 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: white;
  padding: 60px 0 30px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: contents;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.footer-section p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin: 10px 0;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 8px 0;
}

.updated {
  font-size: 12px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 16px;
  }

  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .big-card {
    padding: 30px;
  }

  .big-card p {
    font-size: 16px;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 12px;
  }

  .card {
    padding: 25px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.two-col {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0;
  }

  .hero::before {
    width: 400px;
    height: 400px;
    top: -30%;
    right: -30%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .header {
    padding: 15px 0;
  }

  .logo h1 {
    font-size: 24px;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .nav a {
    display: block;
    padding: 10px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .card {
    padding: 20px;
  }

  .big-card {
    padding: 20px;
  }

  .spec-card {
    padding: 20px;
  }

  .trygg-cta h3 {
    font-size: 24px;
  }

  .trygg-cta p {
    font-size: 14px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
  .header,
  .footer {
    display: none;
  }

  body {
    background: white;
  }

  .section {
    page-break-inside: avoid;
  }
}
  padding: 18px 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
  color: #41525d;
}

.footer a {
  color: #245a67;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 840px) {
  .hero {
    padding: 72px 0 60px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 1.04rem;
  }
}
