/*
Theme Name: Ultra Studio
Description: Custom theme for Ultra Studio
Version: 2.0
Author: Ultra Studio
*/

:root {
  --bg: #121212;
  --bg-card: #1F1F1F;
  --bg-alt: #333333;
  --text: #E8F0FF;
  --green: #35CE8D;
  --green-dim: rgba(53, 206, 141, 0.15);
  --green-border: rgba(53, 206, 141, 0.25);
  --card-border: rgba(255,255,255,0.05);
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-hover: 0 8px 48px rgba(53,206,141,0.18);
  --max-width: 1140px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(18,18,18,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }

.site-logo img { height: 34px; width: auto; display: block; }

.site-nav { display: flex; gap: 8px; align-items: center; }

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  padding: 8px 14px;
  border-radius: 8px;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.site-nav a:hover { opacity: 1; background: rgba(255,255,255,0.05); }
.site-nav a.active { opacity: 1; color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: #0a0a0a !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #2ebd7e !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 120px 40px 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(18,18,18,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(53,206,141,0.12);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 78px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--green); }

.hero p {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2.5s ease-in-out infinite;
  color: var(--text);
  opacity: 0.35;
}
.scroll-down svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ================================================
   LAYOUT
   ================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
section { padding: 110px 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  opacity: 0.6;
  max-width: 500px;
  margin-bottom: 64px;
  line-height: 1.7;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(53,206,141,0.3);
}
.btn:hover {
  background: #2ebd7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(53,206,141,0.4);
}
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--green-border);
  background: var(--green-dim);
  transform: translateY(-2px);
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  padding: 160px 48px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-border), transparent);
}
.page-hero h1 {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.page-hero h1 span { color: var(--green); }

/* ================================================
   SERVICES INTRO BOX
   ================================================ */
.services-intro-inner {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  gap: 64px;
  align-items: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.services-intro-text { flex: 1; }
.services-intro-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.services-intro-text p {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 32px;
}
.services-intro-img { flex: 1; max-width: 48%; }
.services-intro-img img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow);
}

/* ================================================
   SERVICE CARDS GRID
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--green);
  transition: height 0.3s ease;
  border-radius: 0 0 3px 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-border);
  background: #242424;
}
.service-card:hover::before { height: 100%; }

.svc-icon-wrap {
  width: 52px; height: 52px;
  background: var(--green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.service-card:hover .svc-icon-wrap { background: rgba(53,206,141,0.25); }
.svc-icon-wrap svg { width: 24px; height: 24px; fill: var(--green); }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.7;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-wrap { padding: 0 0 110px; }
.cta-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  gap: 64px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.cta-left { flex: 1; }
.cta-left h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.cta-left p { font-size: 18px; opacity: 0.6; margin-bottom: 36px; }

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.countdown-label-top {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
}
.countdown-boxes {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cd-box {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 18px 20px 14px;
  text-align: center;
  min-width: 80px;
  border: 1px solid var(--green-border);
}
.cd-box .cd-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cd-box .cd-unit {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 8px;
}
.cd-sep {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.5;
  padding-top: 14px;
  line-height: 1;
}

/* ================================================
   CLIENTS SECTION
   ================================================ */
.clients-section {
  background: linear-gradient(180deg, var(--bg) 0%, #191919 100%);
  padding: 100px 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.clients-section h2 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}
.clients-section .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: var(--max-width);
  margin: 48px auto 0;
}
.client-card {
  padding: 28px 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  text-decoration: none;
}
.client-card:hover {
  background: var(--bg-card);
  border-color: var(--green-border);
  transform: translateY(-4px);
}
.client-card img { max-height: 60px; width: auto; opacity: 0.7; transition: opacity 0.3s; filter: brightness(0) invert(1); }
.client-card:hover img { opacity: 1; filter: none; }

/* ================================================
   TJENESTER PAGE
   ================================================ */
.tjenester-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 80px;
}
.tjenester-intro-text h2 { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.tjenester-intro-text p { font-size: 16px; opacity: 0.65; line-height: 1.85; }
.tjenester-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box span { font-size: 13px; opacity: 0.55; font-weight: 500; }

.tjenester-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tjeneste-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tjeneste-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-border);
}
.tjeneste-card-img-wrap {
  position: relative;
  height: 260px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.tjeneste-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tjeneste-card:hover .tjeneste-card-img-wrap img { transform: scale(1.05); }
.tjeneste-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18,18,18,0.6) 100%);
}
.tjeneste-icon-badge {
  position: absolute;
  bottom: -22px;
  left: 32px;
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(53,206,141,0.45);
  transition: transform 0.3s;
}
.tjeneste-card:hover .tjeneste-icon-badge { transform: scale(1.08); }
.tjeneste-icon-badge svg { width: 22px; height: 22px; fill: #0a0a0a; }
.tjeneste-card-body {
  padding: 44px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tjeneste-card-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.tjeneste-card-body p {
  opacity: 0.62;
  line-height: 1.8;
  font-size: 14px;
  flex: 1;
  margin-bottom: 28px;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-hero-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  margin-bottom: 48px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-hero-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.about-hero-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-box p {
  font-size: 16px;
  opacity: 0.7;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: var(--green-border); transform: translateY(-4px); }
.team-initial {
  width: 72px; height: 72px;
  background: var(--green-dim);
  border: 2px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 24px;
}
.team-card h3 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 20px; }
.team-card a {
  color: var(--text);
  text-decoration: none;
  display: block;
  margin: 10px 0;
  font-size: 15px;
  opacity: 0.6;
  transition: color 0.25s, opacity 0.25s;
}
.team-card a:hover { color: var(--green); opacity: 1; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.contact-card h2 { font-size: 32px; font-weight: 800; margin-bottom: 48px; }
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  font-size: 18px;
}
.contact-item svg { width: 22px; height: 22px; fill: var(--green); flex-shrink: 0; }
.contact-item a { color: var(--text); text-decoration: none; transition: color 0.25s; }
.contact-item a:hover { color: var(--green); }

/* ================================================
   SHOP / PRODUCTS PAGE
   ================================================ */
.shop-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.shop-section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.shop-section-sub {
  font-size: 16px;
  opacity: 0.6;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

/* Featured product */
.product-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  margin-bottom: 96px;
}
.product-featured-img {
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 440px;
}
.product-featured-img img { max-width: 100%; max-height: 380px; object-fit: contain; display: block; }
.product-featured-info {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
}
.product-featured-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.product-featured-info p {
  font-size: 15px;
  opacity: 0.65;
  line-height: 1.8;
  margin-bottom: 32px;
}
.product-features { list-style: none; margin-bottom: 36px; }
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.75;
  padding: 6px 0;
}
.product-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.product-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 28px;
}
.product-price span { font-size: 16px; opacity: 0.5; font-weight: 400; color: var(--text); }

/* Tier cards */
.tiers-header { text-align: center; margin-bottom: 48px; }
.tiers-header h2 { font-size: 40px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.tiers-header p { opacity: 0.6; font-size: 16px; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}
.tier-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-border);
}
.tier-card.featured {
  border-color: var(--green-border);
  position: relative;
}
.tier-popular-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}
.tier-img {
  background: #0d0d0d;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.tier-img img { max-height: 160px; max-width: 100%; object-fit: contain; }
.tier-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.tier-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.tier-price { font-size: 32px; font-weight: 800; color: var(--green); margin-bottom: 20px; }
.tier-price span { font-size: 14px; opacity: 0.5; font-weight: 400; color: var(--text); }
.tier-desc { font-size: 13px; opacity: 0.6; line-height: 1.7; margin-bottom: 24px; flex: 1; }
.tier-body .btn { width: 100%; justify-content: center; font-size: 14px; padding: 13px 20px; }

/* Shop CTA */
.shop-cta {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.shop-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.shop-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.shop-cta p { opacity: 0.6; margin-bottom: 36px; font-size: 16px; }

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 64px;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
}
.legal-content h2 { font-size: 30px; font-weight: 800; margin-bottom: 40px; }
.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}
.legal-content p { margin-bottom: 14px; opacity: 0.75; line-height: 1.85; font-size: 15px; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo img { height: 28px; width: auto; opacity: 0.5; transition: opacity 0.3s; }
.footer-logo:hover img { opacity: 1; }
.footer-links { display: flex; gap: 8px; }
.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.4;
  padding: 6px 12px;
  border-radius: 8px;
  transition: opacity 0.25s, background 0.25s;
}
.footer-links a:hover { opacity: 0.9; background: rgba(255,255,255,0.05); }
.footer-copy { font-size: 13px; opacity: 0.3; }

/* ================================================
   NAV DROPDOWN
   ================================================ */
.nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
/* Invisible bridge that fills the gap so hover isn't lost */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 18px;
}
.nav-has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-chevron {
  width: 10px;
  height: 10px;
  fill: currentColor;
  opacity: 0.5;
  transition: transform .25s, opacity .2s;
  flex-shrink: 0;
}
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 230px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(53,206,141,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 1001;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.08);
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text) !important;
  text-decoration: none;
  opacity: 0.7 !important;
  transition: opacity .15s, background .15s, color .15s !important;
  background: transparent !important;
  transform: none !important;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  opacity: 1 !important;
  background: rgba(53,206,141,0.1) !important;
  color: var(--green) !important;
}
.nav-dropdown a svg {
  width: 15px;
  height: 15px;
  fill: var(--green);
  flex-shrink: 0;
  opacity: 0.7;
}
.nav-dropdown a:hover svg { opacity: 1; }

/* ================================================
   NAV INDICATOR (follow-mouse)
   ================================================ */
.site-nav { position: relative; }
.nav-indicator {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: left .22s cubic-bezier(.4,0,.2,1), width .22s cubic-bezier(.4,0,.2,1), opacity .18s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(53,206,141,0.7);
}

/* ================================================
   SERVICE SUBPAGES
   ================================================ */
.service-overview { padding: 80px 0 0; }
.service-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-overview-text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.service-overview-text p {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.85;
  margin-bottom: 32px;
}
.service-overview-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
  height: 380px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.feature-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--card-border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-item:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-item-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-item-icon svg { width: 20px; height: 20px; fill: var(--green); }
.feature-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.75;
}

.process-header { text-align: center; margin-bottom: 48px; }
.process-header h2 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.process-header p { opacity: 0.6; font-size: 16px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-step {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--card-border);
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 20px;
  opacity: 0.4;
  z-index: 1;
}
.step-number {
  width: 52px; height: 52px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 20px;
}
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; opacity: 0.6; line-height: 1.75; }

.service-page-cta {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.service-page-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.service-page-cta h2 { font-size: 38px; font-weight: 800; margin-bottom: 12px; }
.service-page-cta p {
  opacity: 0.6;
  margin-bottom: 36px;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.service-page-cta .btn { margin: 0 auto; }

.tjeneste-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.25s ease;
  margin-top: auto;
}
.tjeneste-card-link svg { width: 14px; height: 14px; fill: var(--green); transition: transform 0.25s; }
.tjeneste-card:hover .tjeneste-card-link { gap: 14px; }
.tjeneste-card:hover .tjeneste-card-link svg { transform: translateX(2px); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-overview-inner { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 58px; }
  .section-title { font-size: 40px; }
  .cta-left h2 { font-size: 38px; }
  .clients-section h2 { font-size: 40px; }
  .tiers-grid { grid-template-columns: repeat(3, 1fr); }
  .product-featured { grid-template-columns: 1fr; }
  .product-featured-img { min-height: 300px; }
}

@media (max-width: 767px) {
  .site-header { padding: 0 20px; height: 62px; }
  .site-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(14,14,14,0.98);
    padding: 24px 20px 32px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; font-size: 16px; }
  .hamburger { display: flex; }
  .hero { background-attachment: scroll; padding: 100px 24px 80px; }
  .hero h1 { font-size: 40px; letter-spacing: -1px; }
  .hero p { font-size: 15px; }
  .hero-badge { font-size: 11px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .services-intro-inner { flex-direction: column; padding: 32px 24px; gap: 32px; }
  .services-intro-img { max-width: 100%; }
  .cta-wrap { padding: 0 20px 80px; }
  .cta-box { flex-direction: column; padding: 40px 28px; gap: 40px; }
  .cta-left h2 { font-size: 30px; }
  .countdown-boxes { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .cd-box { min-width: 68px; padding: 14px 16px 10px; }
  .cd-box .cd-num { font-size: 30px; }
  .cd-sep { font-size: 24px; }
  .clients-section { padding: 80px 24px; }
  .clients-section h2 { font-size: 28px; }
  .team-grid { grid-template-columns: 1fr; }
  .tjenester-grid { grid-template-columns: 1fr; }
  .tjenester-intro { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; margin-bottom: 48px; }
  .tjenester-intro-text h2 { font-size: 30px; }
  .tjeneste-card-img-wrap { height: 200px; }
  .tjeneste-card-body { padding: 40px 24px 28px; }
  .about-hero-box { padding: 40px 28px; }
  .about-hero-box h2 { font-size: 24px; }
  .contact-card { padding: 40px 24px; }
  .legal-content { padding: 32px 24px; }
  .page-hero { padding: 120px 24px 56px; }
  .page-hero h1 { font-size: 36px; }
  .section-title { font-size: 30px; }
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .btn { font-size: 14px; padding: 14px 26px; }
  .tiers-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-featured { grid-template-columns: 1fr; }
  .product-featured-img { min-height: 240px; padding: 32px; }
  .product-featured-info { padding: 36px 28px; }
  .product-featured-info h2 { font-size: 24px; }
  .product-price { font-size: 28px; }
  .shop-cta { padding: 40px 28px; }
  .shop-cta h2 { font-size: 26px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .service-overview-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-overview-img img { height: 260px; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .service-page-cta { padding: 48px 28px; }
  .service-page-cta h2 { font-size: 26px; }
}
