/* ============================================
   RakennusInno Pori - Luxury Premium Styles
   Design System: Gold accents, sophisticated colors
   ============================================ */

/* ============================================
   CSS RESET & NORMALIZE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fafafa;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY - LUXURY PREMIUM
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A4D7C;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #1A4D7C 0%, #2d6ba5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(26, 77, 124, 0.1);
}

h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C9A961 0%, #E85D25 100%);
  border-radius: 3px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2d6ba5;
}

p {
  margin-bottom: 16px;
  color: #333;
  line-height: 1.8;
}

.subheadline {
  font-size: 20px;
  color: #555;
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   HEADER - LUXURY STYLE
   ============================================ */
header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 4px 20px rgba(26, 77, 124, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(201, 169, 97, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(26, 77, 124, 0.1));
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A4D7C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A961 0%, #E85D25 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #E85D25;
}

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

/* ============================================
   MOBILE MENU - PREMIUM DESIGN
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #1A4D7C 0%, #2d6ba5 100%);
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 77, 124, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(26, 77, 124, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 3px solid #C9A961;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #1A4D7C;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 77, 124, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #E85D25;
  color: white;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 8px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A4D7C;
  padding: 18px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  margin-bottom: 4px;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(232, 93, 37, 0.1) 100%);
  border-left-color: #C9A961;
  transform: translateX(8px);
  color: #E85D25;
}

/* ============================================
   BUTTONS - LUXURY PREMIUM
   ============================================ */
.btn-primary,
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1A4D7C 0%, #2d6ba5 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(26, 77, 124, 0.25);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before,
.cta-button:hover::before {
  left: 100%;
}

.btn-primary:hover,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 77, 124, 0.35);
  background: linear-gradient(135deg, #E85D25 0%, #f06d35 100%);
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: #1A4D7C;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #C9A961;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #C9A961 0%, #d4b66f 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.35);
}

.service-link {
  color: #E85D25;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #1A4D7C;
  border-bottom-color: #C9A961;
}

/* ============================================
   HERO SECTION - LUXURY PREMIUM
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1A4D7C 0%, #2d6ba5 100%);
  color: white;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(201, 169, 97, 0.1) 100%);
  pointer-events: none;
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: none;
  -webkit-text-fill-color: white;
}

.hero .subheadline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(201, 169, 97, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1A4D7C 0%, #2d6ba5 100%);
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
}

.page-hero h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: white;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #C9A961;
  border-bottom-color: #C9A961;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-proposition {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-proposition > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #555;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 50px;
}

.value-item {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.08);
  border: 2px solid rgba(201, 169, 97, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(26, 77, 124, 0.15);
  border-color: #C9A961;
}

.value-item h3 {
  color: #1A4D7C;
  margin-bottom: 16px;
  font-size: 22px;
}

.value-item p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  text-align: center;
}

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

.services-overview > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #555;
}

.service-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.card {
  flex: 1 1 340px;
  max-width: 380px;
  background: white;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.08);
  border: 2px solid rgba(201, 169, 97, 0.1);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, #C9A961 0%, #E85D25 100%);
  border-radius: 16px 0 0 16px;
  transition: height 0.3s ease;
}

.service-card:hover::before,
.card:hover::before {
  height: 100%;
}

.service-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(26, 77, 124, 0.15);
  border-color: #C9A961;
}

.service-card h3,
.card h3 {
  color: #1A4D7C;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

/* ============================================
   STATS SECTION - LUXURY PREMIUM
   ============================================ */
.stats,
.stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A4D7C 0%, #2d6ba5 100%);
  color: white;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  flex: 1 1 220px;
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #C9A961;
  margin-bottom: 8px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS - READABLE LUXURY
   ============================================ */
.testimonials,
.client-testimonials {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.testimonials h2,
.client-testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 450px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 36px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.08);
  border-left: 5px solid #C9A961;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(201, 169, 97, 0.2);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(26, 77, 124, 0.15);
}

.testimonial-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author,
.author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #1A4D7C;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(232, 93, 37, 0.05) 100%);
  text-align: center;
  border-top: 3px solid rgba(201, 169, 97, 0.3);
  border-bottom: 3px solid rgba(201, 169, 97, 0.3);
}

.cta-banner h2,
.cta-section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-banner p,
.cta-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: #555;
}

.cta-info {
  margin-top: 16px;
  font-size: 14px;
  color: #777;
  font-style: italic;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section,
.service-detailed {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.content-section:nth-child(even) {
  background: white;
}

.content-section:nth-child(odd) {
  background: #fafafa;
}

.service-content,
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.tagline {
  font-size: 20px;
  color: #E85D25;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.benefits {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 12px;
  border-left: 5px solid #C9A961;
  margin: 32px 0;
  box-shadow: 0 4px 15px rgba(26, 77, 124, 0.06);
}

.benefits h3 {
  color: #1A4D7C;
  margin-bottom: 16px;
  font-size: 20px;
}

.benefits ul {
  list-style: none;
  padding-left: 0;
}

.benefits ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #333;
  line-height: 1.7;
}

.benefits ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-weight: bold;
  font-size: 18px;
}

/* ============================================
   MISSION & VALUES
   ============================================ */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.mission-item {
  flex: 1 1 300px;
  background: white;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.08);
  border-top: 4px solid #C9A961;
}

.mission-item h3 {
  color: #1A4D7C;
  margin-bottom: 16px;
  font-size: 22px;
}

.values {
  background: linear-gradient(135deg, #1A4D7C 0%, #2d6ba5 100%);
  color: white;
  padding: 40px;
  border-radius: 16px;
  margin: 40px 0;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.2);
}

.values h3 {
  color: #C9A961;
  margin-bottom: 24px;
  font-size: 24px;
}

.values ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.values ul li {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  border: 2px solid rgba(201, 169, 97, 0.3);
}

/* ============================================
   EXPERTISE & TECHNOLOGY
   ============================================ */
.expertise-section,
.technology-section {
  padding: 60px 20px;
  background: white;
  margin-bottom: 40px;
}

.expertise-areas,
.tech-features,
.tech-capabilities,
.tech-tools,
.tech-specs,
.smart-systems {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 5px solid #E85D25;
  box-shadow: 0 4px 15px rgba(26, 77, 124, 0.06);
}

.expertise-areas ul,
.tech-features ul,
.tech-capabilities ul,
.tech-tools ul,
.tech-specs ul,
.smart-systems ul {
  list-style: none;
  padding-left: 0;
}

.expertise-areas ul li,
.tech-features ul li,
.tech-capabilities ul li,
.tech-tools ul li,
.tech-specs ul li,
.smart-systems ul li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: #333;
  line-height: 1.7;
  border-bottom: 1px solid rgba(26, 77, 124, 0.1);
}

.expertise-areas ul li:last-child,
.tech-features ul li:last-child,
.tech-capabilities ul li:last-child,
.tech-tools ul li:last-child,
.tech-specs ul li:last-child,
.smart-systems ul li:last-child {
  border-bottom: none;
}

.expertise-areas ul li::before,
.tech-features ul li::before,
.tech-capabilities ul li::before,
.tech-tools ul li::before,
.tech-specs ul li::before,
.smart-systems ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-size: 24px;
  line-height: 1;
}

.certifications {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(232, 93, 37, 0.1) 100%);
  padding: 24px 32px;
  border-radius: 12px;
  margin: 32px 0;
  border: 2px solid rgba(201, 169, 97, 0.3);
}

/* ============================================
   CASE STUDIES & REFERENCES
   ============================================ */
.case-study {
  padding: 60px 20px;
  margin-bottom: 40px;
  background: white;
  border-left: 8px solid #C9A961;
}

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

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 2px solid rgba(201, 169, 97, 0.2);
  border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.case-meta span {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

blockquote {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 32px;
  border-left: 5px solid #C9A961;
  margin: 32px 0;
  font-style: italic;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(26, 77, 124, 0.06);
}

.reference-list {
  padding: 60px 20px;
  background: #fafafa;
}

.reference-items {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}

.reference-items li {
  padding: 20px 24px 20px 60px;
  margin-bottom: 12px;
  background: white;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 15px rgba(26, 77, 124, 0.06);
  border-left: 5px solid #E85D25;
  transition: all 0.3s ease;
}

.reference-items li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(26, 77, 124, 0.1);
}

.reference-items li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #C9A961;
  font-size: 24px;
  font-weight: bold;
}

/* ============================================
   ROADMAP
   ============================================ */
.roadmap-section {
  padding: 60px 20px;
  background: white;
}

.roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.roadmap-item {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.08);
  border-top: 5px solid #C9A961;
  transition: all 0.3s ease;
}

.roadmap-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(26, 77, 124, 0.15);
}

.roadmap-item h3 {
  font-size: 32px;
  color: #E85D25;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */
.contact-intro,
.services-intro,
.references-intro {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.contact-info-section {
  padding: 60px 20px;
  background: #fafafa;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  flex: 1 1 220px;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.08);
  text-align: center;
  border-top: 4px solid #C9A961;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(26, 77, 124, 0.15);
}

.contact-card h3 {
  color: #1A4D7C;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-card p {
  color: #333;
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  padding: 60px 20px;
  background: white;
}

.form-note {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  color: #555;
}

.contact-form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.08);
  border: 2px solid rgba(201, 169, 97, 0.2);
}

.contact-form-placeholder ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.contact-form-placeholder ul li {
  padding: 12px 0;
  color: #555;
  border-bottom: 1px solid rgba(26, 77, 124, 0.1);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 60px 20px;
  background: #fafafa;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 24px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(26, 77, 124, 0.06);
  border-left: 5px solid #C9A961;
}

.faq-item h3 {
  color: #1A4D7C;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
  padding: 60px 20px;
  background: white;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

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

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #555;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, #1A4D7C 0%, #2d6ba5 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #C9A961;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: white;
}

.thank-you-message,
.thank-you-content {
  padding: 60px 20px;
  background: white;
}

.message-content {
  max-width: 800px;
  margin: 0 auto;
}

.message-content ol {
  background: #f8f9fa;
  padding: 32px 32px 32px 48px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 5px solid #C9A961;
}

.message-content ol li {
  padding: 12px 0;
  color: #333;
  line-height: 1.7;
}

.urgent-note {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(232, 93, 37, 0.1) 100%);
  padding: 24px 32px;
  border-radius: 12px;
  margin: 32px 0;
  border: 2px solid rgba(201, 169, 97, 0.3);
}

.while-you-wait,
.next-steps {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.suggestion-grid,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion-card,
.link-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: white;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 124, 0.08);
  border-top: 4px solid #C9A961;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(26, 77, 124, 0.15);
}

.suggestion-card h3,
.link-card h3 {
  margin-bottom: 24px;
}

.contact-alternatives {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.method-item {
  flex: 1 1 250px;
  max-width: 300px;
}

.method-item h3 {
  color: #1A4D7C;
  margin-bottom: 12px;
  font-size: 20px;
}

.testimonial-snippet {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(232, 93, 37, 0.05) 100%);
}

.rating {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  color: #C9A961;
  text-align: center;
}

/* ============================================
   FOOTER - LUXURY PREMIUM
   ============================================ */
footer {
  background: linear-gradient(135deg, #1A4D7C 0%, #0d2d4a 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(201, 169, 97, 0.3);
}

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

.footer-logo {
  height: 45px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: #C9A961;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-column ul li a:hover {
  color: #C9A961;
  border-bottom-color: #C9A961;
  padding-left: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: #C9A961;
  border-bottom-color: #C9A961;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A4D7C 0%, #0d2d4a 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #C9A961;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-accept {
  background: #C9A961;
  color: white;
  border: 2px solid #C9A961;
}

.cookie-accept:hover {
  background: #d4b66f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cookie-settings {
  background: transparent;
  color: #C9A961;
  border: 2px solid #C9A961;
}

.cookie-settings:hover {
  background: #C9A961;
  color: white;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #C9A961;
}

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 28px; }
  
  /* Hide desktop navigation */
  .main-nav { display: none; }
  
  /* Show mobile menu button */
  .mobile-menu-toggle { display: flex; }
  
  /* Header adjustments */
  .header-content {
    justify-content: center;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Stats */
  .stats-grid {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Cards and grids */
  .value-grid,
  .service-grid,
  .testimonial-grid,
  .contact-grid,
  .suggestion-grid,
  .link-grid {
    gap: 20px;
  }
  
  .value-item,
  .service-card,
  .testimonial-card,
  .contact-card,
  .suggestion-card,
  .link-card {
    flex: 1 1 100%;
  }
  
  /* Mission & values */
  .mission-vision {
    flex-direction: column;
  }
  
  .mission-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Case studies */
  .case-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Contact methods */
  .contact-methods {
    flex-direction: column;
  }
  
  .method-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Roadmap */
  .roadmap {
    flex-direction: column;
  }
  
  .roadmap-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  /* Container padding */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .cta-button {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  /* Mobile menu */
  .mobile-menu {
    width: 90%;
  }
  
  .mobile-nav a {
    font-size: 16px;
    padding: 16px 18px;
  }
  
  /* Cards */
  .service-card,
  .testimonial-card,
  .contact-card {
    padding: 28px 20px;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 28px 20px;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations */
.hero-content {
  animation: fadeIn 0.8s ease;
}

.mobile-menu.active {
  animation: slideInRight 0.4s ease;
}

.success-icon {
  animation: pulse 1s ease infinite;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}