:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-light: #2c2c2c;
  --text: #ffffff;
  --text-muted: #b8b8b8;
  --accent: #d4a574;
  --accent-dark: #a07f4f;
  --accent-light: #e5c5a4;
  --accent-green: #2d5a4a;
  --line: #333333;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --radius: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

/* Navigation */
.navbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-light) 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(45, 90, 74, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
  margin: 12px 0 24px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  border-radius: var(--radius);
  opacity: 0.7;
  object-fit: cover;
  height: 400px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--surface);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
}

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

.section-primary {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.section-secondary {
  background: var(--surface-light);
  border-bottom: 1px solid var(--line);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.content-card {
  background: var(--surface-light);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.section-primary .content-card {
  background: var(--surface-light);
}

.section-secondary .content-card {
  background: var(--surface);
}

.content-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.content-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.content-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Specifications */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.spec-item {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.spec-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.features-highlight {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.features-highlight h3 {
  font-size: 1.3rem;
  margin: 0 0 20px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: var(--text-muted);
  font-weight: 500;
}

/* Tech Cards */
.tech-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.tech-card {
  background: var(--surface-light);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.section-primary .tech-card {
  background: var(--surface-light);
}

.section-secondary .tech-card {
  background: var(--surface);
}

.tech-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.tech-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.tech-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.tech-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Trygg Section */
.trygg-section {
  background: linear-gradient(135deg, var(--surface-light), var(--surface));
}

.trygg-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trygg-text {
  padding: 20px;
}

.trygg-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 16px;
}

.trygg-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 24px 0 12px;
}

.trygg-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.trygg-text > p {
  color: var(--text-muted);
  line-height: 1.7;
}

.trygg-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.trygg-feature {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.feature-icon {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.3rem;
  margin-right: 8px;
}

.trygg-feature h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.trygg-feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.trygg-image {
  position: relative;
}

.trygg-image img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 60px 0 20px;
  margin-top: 60px;
}

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

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

.footer-section p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-image {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    margin-top: 40px;
    height: 300px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-cards {
    grid-template-columns: 1fr;
  }

  .trygg-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-content {
    padding: 12px 0;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.75rem;
  }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle,
  .hero-description {
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

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

  .content-card,
  .tech-card,
  .spec-item {
    padding: 20px;
  }
}
  background: var(--cta);
  color: #17211f;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 24px;
  transition:
    transform 0.18s ease,
    background-color 0.2s ease;
}

.btn:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.section {
  padding: 34px 0 74px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  background: #eef3ee;
}

.footer-inner {
  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;
  }
}
