:root {
  --primary-dark: #0f2b46;
  --primary: #1a4a6e;
  --secondary: #2b9e8f;
  --accent: #d67d3e;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --text-primary: #1c2833;
  --text-secondary: #566573;
  --border: #dfe6e9;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --header-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-dark);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.8rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #c06a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 125, 62, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s,
              padding 0.35s,
              box-shadow 0.35s;
  padding: 1.1rem 0;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(15, 43, 70, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}

.header-logo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
  z-index: 1001;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s ease;
  position: absolute;
}

.menu-icon {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon::before {
  content: '';
  top: -8px;
}

.menu-icon::after {
  content: '';
  top: 8px;
}

.menu-toggle.active .menu-icon {
  background: transparent;
}

.menu-toggle.active .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 43, 70, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
  align-items: center;
  justify-content: center;
}

.mobile-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-list a {
  color: #fff;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: color var(--transition);
}

.mobile-nav-list a:hover {
  color: var(--accent);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 45%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1.2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 158, 143, 0.15) 0%, transparent 70%);
  top: -120px;
  right: -100px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 125, 62, 0.1) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 2.8rem;
  line-height: 1.15;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.8rem;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-header h2 {
  margin-bottom: 0.6rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 1rem auto 0;
  font-size: 0.9rem;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--primary-dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(43, 158, 143, 0.1), rgba(26, 74, 110, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--secondary);
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.about-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-brief-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-brief-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(43, 158, 143, 0.3);
  border-radius: 12px;
  pointer-events: none;
}

.about-brief-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-brief-text h2 {
  margin-bottom: 0.8rem;
}

.about-brief-text h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 8px;
}

.about-brief-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.about-brief-text .btn {
  margin-top: 0.8rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e8913a);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step h4 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.8rem;
  opacity: 0.8;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -0.75rem;
  width: calc(1.5rem);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item h3 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.cta-section {
  position: relative;
  padding: 4.5rem 0;
  background: var(--primary-dark);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.9rem;
}

.page-hero {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 7rem 1.2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 158, 143, 0.12) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  max-width: 500px;
  margin: 0 auto;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.content-with-image.reverse {
  direction: rtl;
}

.content-with-image.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.content-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.content-text h2 {
  margin-bottom: 0.7rem;
}

.content-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 8px;
}

.content-text p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-white);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.info-card h4 {
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}

.info-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border: 2px solid var(--secondary);
}

.pricing-card.featured::before {
  content: 'Populær';
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 2rem;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  margin-bottom: 0.3rem;
}

.pricing-card .price-period {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.3rem 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li i {
  color: var(--secondary);
  font-size: 0.7rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.3rem;
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(43, 158, 143, 0.12), rgba(214, 125, 62, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--secondary);
}

.value-card h4 {
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap h3 {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color var(--transition);
  background: var(--bg-light);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--secondary);
}

.form-checkbox label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: transform var(--transition);
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.contact-info-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-image-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.contact-image-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.page-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.2rem 3rem;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
}

.fullscreen-content {
  max-width: 500px;
}

.fullscreen-content .icon-large {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.fullscreen-content h1 {
  color: #fff;
  margin-bottom: 0.6rem;
  font-size: 2.2rem;
}

.fullscreen-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.policy-content {
  padding: 2.5rem 0 3rem;
}

.policy-content h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.policy-content h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.policy-content p,
.policy-content li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  list-style: disc;
  margin-bottom: 0.3rem;
}

.site-footer {
  background: var(--primary-dark);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: 1rem 1.2rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  margin-bottom: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-accept {
  padding: 0.45rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-accept:hover {
  background: #c06a2e;
}

.timeline-section {
  padding: 3.5rem 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.8rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid var(--bg-light);
  z-index: 1;
}

.timeline-item h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.timeline-item p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.blog-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.blog-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.3rem;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.blog-feature .feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(43, 158, 143, 0.12), rgba(26, 74, 110, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.blog-feature h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.blog-feature p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .services-grid,
  .info-cards,
  .pricing-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-brief,
  .content-with-image,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .content-with-image.reverse {
    direction: ltr;
  }

  .blog-features {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 5rem 1rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 5.5rem 1rem 2rem;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .section {
    padding: 3rem 0;
  }

  .services-grid,
  .info-cards,
  .pricing-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .hero {
    padding: 4rem 0.8rem 2.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
  }
}
