/* ===========================
   OrdinEnergo - Scandinavian Clean Design
   Modern Energy Monitoring Platform
   =========================== */

/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* Scandinavian Clean Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: #4A5568;
}

a {
  color: #0A4D8C;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2E7D32;
}

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

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4A5568;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Buttons - Scandinavian Minimal Style */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #0A4D8C;
  color: #FFFFFF;
  border-color: #0A4D8C;
}

.btn-primary:hover {
  background-color: #083A6B;
  border-color: #083A6B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 77, 140, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #0A4D8C;
  border-color: #0A4D8C;
}

.btn-secondary:hover {
  background-color: #0A4D8C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Header - Clean Nordic Style */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2C3E50;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2E7D32;
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #0A4D8C;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #083A6B;
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 32px 32px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}

/* Hero Section - Scandinavian Minimalism */
.hero {
  background: linear-gradient(135deg, #F7F9FC 0%, #FFFFFF 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 77, 140, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  font-size: 14px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badges span::before {
  content: '✓';
  color: #2E7D32;
  font-weight: bold;
  font-size: 18px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #F7F9FC 0%, #FFFFFF 100%);
  padding: 60px 0 40px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #0A4D8C;
}

.subtitle {
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 60px 0;
}

.content-section {
  padding: 60px 0;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #1A1A1A;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #FAFAFA;
  padding: 40px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.benefit-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background-color: #F7F9FC;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 320px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
  border: 2px solid #0A4D8C;
  position: relative;
}

.service-card.featured::before {
  content: 'DOPORUČUJEME';
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #FFB300;
  color: #1A1A1A;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.service-card h3 {
  font-size: 22px;
  color: #1A1A1A;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #0A4D8C;
  margin: 8px 0;
}

.service-card p {
  color: #4A5568;
  flex: 1;
}

.text-center {
  text-align: center;
  margin-top: 32px;
}

/* Social Proof */
.social-proof {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.social-proof h2 {
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 200px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #0A4D8C;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #6B7280;
  text-align: center;
}

/* Testimonials - Readable Text */
.testimonials {
  padding: 80px 0;
  background-color: #F7F9FC;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #1A1A1A;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #6B7280;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0A4D8C 0%, #083A6B 100%);
  color: #FFFFFF;
  text-align: center;
}

.cta-content h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 24px;
}

.cta-content > p {
  font-size: 18px;
  color: #E5E7EB;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  list-style: none;
  margin: 32px 0 40px;
}

.cta-features li {
  font-size: 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-features li::before {
  content: '✓';
  color: #FFB300;
  font-weight: bold;
  font-size: 20px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-buttons .btn-primary {
  background-color: #FFB300;
  border-color: #FFB300;
  color: #1A1A1A;
}

.cta-buttons .btn-primary:hover {
  background-color: #FFA000;
  border-color: #FFA000;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #0A4D8C;
}

.guarantee {
  font-size: 14px;
  color: #E5E7EB;
  margin-top: 16px;
}

/* Tech Components */
.tech-components {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.tech-card {
  flex: 1 1 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-card img {
  width: 56px;
  height: 56px;
}

.tech-card h3 {
  font-size: 20px;
  color: #1A1A1A;
}

.tech-card p {
  color: #4A5568;
  font-size: 15px;
}

.tech-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-card li {
  font-size: 14px;
  color: #6B7280;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-card li::before {
  content: '→';
  color: #2E7D32;
  font-weight: bold;
}

/* Security Section */
.security-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

.security-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.security-section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #4A5568;
}

.security-features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.security-item {
  flex: 1 1 300px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.security-item img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.security-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.security-item p {
  font-size: 14px;
  color: #6B7280;
}

.certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cert-badge {
  background-color: #FFFFFF;
  border: 2px solid #2E7D32;
  color: #2E7D32;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

/* Services Detailed */
.services-section {
  padding: 80px 0;
}

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-detail h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: #0A4D8C;
  margin-bottom: 16px;
  display: block;
}

.service-detail > p {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 24px;
  line-height: 1.7;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.features-list li {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #4A5568;
}

.features-list li::before {
  content: '✓';
  color: #2E7D32;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.ideal-for {
  margin-top: 24px;
  padding: 16px;
  background-color: #F7F9FC;
  border-radius: 4px;
  font-size: 15px;
  color: #4A5568;
}

.ideal-for strong {
  color: #1A1A1A;
}

/* Guarantees */
.guarantees-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

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

.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.guarantee-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #2E7D32;
}

.guarantee-card h4 {
  font-size: 18px;
  color: #2E7D32;
  margin-bottom: 16px;
}

.guarantee-card p {
  font-size: 14px;
  color: #4A5568;
}

/* Steps Timeline */
.steps-section {
  padding: 80px 0;
}

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

.steps-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background-color: #0A4D8C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.step-content {
  flex: 1;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-content p {
  color: #4A5568;
  margin-bottom: 12px;
}

.step-duration {
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
}

/* Technical Section */
.technical-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

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

.tech-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.phase-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #2E7D32;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.phase-card h4 {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.phase-card p {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

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

.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #0A4D8C;
  border-width: 3px;
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFB300;
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #1A1A1A;
}

.pricing-card .tagline {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.pricing-card .price {
  margin-bottom: 8px;
}

.pricing-card .price .amount {
  font-size: 42px;
  font-weight: 700;
  color: #0A4D8C;
  font-family: 'Montserrat', sans-serif;
}

.pricing-card .price .period {
  font-size: 18px;
  color: #6B7280;
}

.pricing-card .yearly-price {
  font-size: 14px;
  color: #2E7D32;
  margin-bottom: 12px;
}

.pricing-card .installation {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.pricing-card .features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  flex: 1;
}

.pricing-card .features li {
  font-size: 15px;
  color: #4A5568;
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card .features li::before {
  content: '✓';
  color: #2E7D32;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-card .ideal-for {
  background-color: #F7F9FC;
  padding: 12px;
  border-radius: 4px;
  margin: 16px 0;
  font-size: 14px;
  text-align: left;
}

/* Addons Section */
.addons-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

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

.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.addon-item {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.addon-item h4 {
  font-size: 18px;
  color: #1A1A1A;
}

.addon-price {
  font-size: 20px;
  font-weight: 700;
  color: #0A4D8C;
  font-family: 'Montserrat', sans-serif;
}

/* Story Section */
.story-section {
  padding: 80px 0;
}

.story-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.founding {
  text-align: center;
  font-size: 18px;
  color: #0A4D8C;
  margin-bottom: 24px;
}

.story-section p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  justify-content: center;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}

.milestone .year {
  font-size: 32px;
  font-weight: 700;
  color: #0A4D8C;
  font-family: 'Montserrat', sans-serif;
}

.milestone .event {
  font-size: 14px;
  color: #6B7280;
  text-align: center;
}

/* Mission Vision */
.mission-vision-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 40px;
}

.mission, .vision {
  flex: 1 1 400px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid #2E7D32;
}

.mission h3, .vision h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.mission p, .vision p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
}

/* Values Section */
.values-section {
  padding: 80px 0;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 260px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  text-align: center;
}

.value-card h4 {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #4A5568;
}

/* Achievements */
.achievements-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

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

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.achievement {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.achievement-number {
  font-size: 48px;
  font-weight: 700;
  color: #0A4D8C;
  font-family: 'Montserrat', sans-serif;
}

.achievement-label {
  font-size: 16px;
  color: #4A5568;
}

.achievement-text {
  font-size: 16px;
  font-weight: 600;
  color: #2E7D32;
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 2px solid #2E7D32;
}

/* Certifications */
.certifications-section {
  padding: 80px 0;
  text-align: center;
}

.certifications-section h2 {
  margin-bottom: 40px;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.partners {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.7;
}

/* Environmental Section */
.environmental-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

.environmental-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 48px;
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-bottom: 40px;
}

.impact-item {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #2E7D32;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.impact-number {
  font-size: 56px;
  font-weight: 700;
  color: #2E7D32;
  font-family: 'Montserrat', sans-serif;
}

.impact-label {
  font-size: 18px;
  color: #1A1A1A;
  font-weight: 600;
}

.impact-equiv {
  font-size: 14px;
  color: #6B7280;
}

.carbon-neutral {
  text-align: center;
  font-size: 18px;
  color: #2E7D32;
  font-weight: 600;
  margin-top: 40px;
}

/* Location Section */
.location-section {
  padding: 80px 0;
}

.location-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.location-info {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-info p {
  font-size: 16px;
  line-height: 1.8;
  padding: 20px;
  background-color: #F7F9FC;
  border-radius: 8px;
  border-left: 4px solid #0A4D8C;
}

/* Contact Page */
.contact-options-section {
  padding: 80px 0;
}

.contact-options-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.contact-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-option {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-option img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}

.contact-option h3 {
  font-size: 20px;
  color: #1A1A1A;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #0A4D8C;
}

.contact-value a {
  color: #0A4D8C;
}

.availability {
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
}

.contact-option p {
  font-size: 14px;
  color: #4A5568;
}

/* Contact Form */
.contact-form-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-note {
  margin-bottom: 32px;
  padding: 16px;
  background-color: #F0F9FF;
  border-radius: 4px;
  border-left: 4px solid #0A4D8C;
}

.form-note p {
  font-size: 14px;
  color: #4A5568;
  margin: 0;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  font-size: 15px;
  color: #2C3E50;
}

.field-placeholder {
  padding: 14px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  background-color: #FAFAFA;
  color: #9CA3AF;
  font-size: 15px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.field-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.field-group.checkbox label {
  font-weight: 400;
  font-size: 14px;
}

/* Consultation Section */
.consultation-section {
  padding: 80px 0;
}

.consultation-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.consultation-section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #4A5568;
}

.consultation-info {
  max-width: 500px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consultation-info p {
  font-size: 15px;
  padding: 12px;
  background-color: #F7F9FC;
  border-radius: 4px;
}

.alternative {
  text-align: center;
  font-size: 15px;
  color: #4A5568;
  margin-top: 16px;
}

.phone-cta {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-top: 16px;
}

.phone-cta a {
  color: #0A4D8C;
  font-weight: 600;
  font-size: 20px;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.map-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.map-placeholder {
  flex: 1 1 400px;
  background-color: #E5E7EB;
  height: 400px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 18px;
}

.location-details {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-details p {
  font-size: 15px;
  line-height: 1.8;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  border-left: 4px solid #0A4D8C;
}

/* Departments Section */
.departments-section {
  padding: 80px 0;
}

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

.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.department {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.department h4 {
  font-size: 18px;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.department p {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
}

/* Legal Page */
.legal-page {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.legal-content {
  max-width: 900px;
  margin: 40px auto 0;
}

.last-updated {
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 28px;
  color: #1A1A1A;
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 20px;
}

.legal-content ul {
  margin-bottom: 20px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 12px;
}

.legal-content a {
  color: #0A4D8C;
  text-decoration: underline;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #E5E7EB;
  font-size: 15px;
}

.cookies-table th {
  background-color: #F7F9FC;
  font-weight: 600;
  color: #1A1A1A;
}

.cookies-table td {
  color: #4A5568;
}

/* Thank You Page */
.thank-you-page {
  padding: 100px 0;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  margin: 0 auto 32px;
  width: 80px;
  height: 80px;
  background-color: #2E7D32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 48px;
  height: 48px;
}

.thank-you-content h1 {
  font-size: 42px;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.confirmation {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 40px;
}

.what-next {
  background-color: #F7F9FC;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  text-align: left;
}

.what-next h2 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.what-next ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-next li {
  font-size: 16px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.what-next li::before {
  content: '→';
  color: #2E7D32;
  font-weight: bold;
  font-size: 20px;
}

.urgent-contact {
  background-color: #FFF3CD;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #FFB300;
  margin-bottom: 32px;
}

.urgent-contact p {
  margin: 0;
  font-size: 16px;
}

.return-home {
  margin-top: 32px;
}

/* Next Steps Section */
.next-steps-section {
  padding: 80px 0;
  background-color: #F7F9FC;
}

.next-steps-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.next-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}

.step-card h3 {
  font-size: 20px;
  color: #1A1A1A;
}

.step-card p {
  font-size: 14px;
  color: #4A5568;
  flex: 1;
}

/* Contact Alternative */
.contact-alternative {
  padding: 80px 0;
}

.contact-alternative h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-item {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact-item img {
  width: 48px;
  height: 48px;
}

.contact-item p {
  font-size: 15px;
  color: #4A5568;
}

/* Overview Section */
.overview-section {
  padding: 80px 0;
}

.overview-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.overview-section > .container > p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  text-align: center;
}

.key-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.key-benefits span {
  background-color: #F7F9FC;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  color: #0A4D8C;
  font-weight: 600;
  border: 1px solid #E5E7EB;
}

/* Footer - Clean Scandinavian */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  color: #CBD5E0;
  margin-bottom: 12px;
}

.footer-column a {
  color: #CBD5E0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FFFFFF;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #CBD5E0;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1 1 400px;
  font-size: 14px;
  color: #CBD5E0;
  margin: 0;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.cookie-banner .btn-accept {
  background-color: #2E7D32;
  color: #FFFFFF;
  border: none;
}

.cookie-banner .btn-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.cookie-banner .btn-settings {
  background-color: transparent;
  color: #CBD5E0;
  border: none;
  text-decoration: underline;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #6B7280;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.cookie-modal h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #E5E7EB;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C3E50;
}

.cookie-category p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Sections */
  .section {
    padding: 40px 0;
  }
  
  /* Benefits */
  .benefits-grid,
  .services-grid,
  .stats-grid,
  .testimonials-grid,
  .tech-components,
  .security-features,
  .guarantees-grid {
    gap: 24px;
  }
  
  .benefit-card,
  .service-card,
  .stat-card,
  .testimonial-card {
    max-width: 100%;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Pricing */
  .pricing-card {
    max-width: 100%;
  }
  
  /* Steps */
  .step-item {
    flex-direction: column;
  }
  
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  
  /* Footer */
  .footer-content {
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
  
  /* Contact Form */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Map */
  .map-info {
    flex-direction: column;
  }
  
  .map-placeholder {
    height: 300px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
  
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .hero h1 {
    font-size: 48px;
  }
}

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Utility Classes */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Accessibility */
:focus {
  outline: 2px solid #0A4D8C;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #0A4D8C;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-section {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}