/* =================================================================
   AXORA HUB - GEOMETRIC STRUCTURED DESIGN SYSTEM
   Modern Smart Windows - CSS Stylesheet
   ================================================================= */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  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: none;
}

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

/* =================================================================
   GEOMETRIC STRUCTURED TYPOGRAPHY
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0A2463;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

strong {
  font-weight: 700;
  color: #0A2463;
}

/* =================================================================
   CONTAINER & LAYOUT SYSTEM (FLEXBOX ONLY)
   ================================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* =================================================================
   GEOMETRIC BUTTON SYSTEM
   ================================================================= */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary {
  background-color: #0A2463;
  color: #ffffff;
  border-color: #0A2463;
}

.btn-primary:hover {
  background-color: #3E92CC;
  border-color: #3E92CC;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(10, 36, 99, 0.3);
}

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

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

/* =================================================================
   HEADER - GEOMETRIC STRUCTURED
   ================================================================= */
header {
  background-color: #ffffff;
  border-bottom: 4px solid #0A2463;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0A2463;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #3E92CC;
  border-bottom-color: #D8315B;
}

.header-cta {
  display: flex;
}

/* =================================================================
   MOBILE MENU - GEOMETRIC SLIDE
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 48px;
  height: 48px;
  background-color: #0A2463;
  color: #ffffff;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  box-shadow: 0 4px 12px rgba(10, 36, 99, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #0A2463;
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D8315B;
  padding-left: 12px;
}

/* =================================================================
   HERO SECTION - GEOMETRIC STRUCTURED
   ================================================================= */
.hero {
  background: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

/* =================================================================
   PAGE HERO - GEOMETRIC
   ================================================================= */
.page-hero {
  background: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
  padding: 60px 20px 40px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%);
  background-size: 40px 40px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
}

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

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

/* =================================================================
   VALUE PROPOSITION - GEOMETRIC STATS
   ================================================================= */
.value-proposition {
  padding: 80px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

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

.value-proposition > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-item {
  flex: 1 1 200px;
  min-width: 200px;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 4px solid #0A2463;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(10, 36, 99, 0.2);
  border-color: #D8315B;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0A2463;
  margin-bottom: 8px;
}

.stat-icon {
  font-size: 48px;
  color: #0A2463;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
}

/* =================================================================
   SERVICES GRID - GEOMETRIC CARDS
   ================================================================= */
.services-overview, .services-detail {
  padding: 80px 20px;
  background-color: #ffffff;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card, .service-detail-card {
  flex: 1 1 280px;
  min-width: 280px;
  padding: 32px 24px;
  background-color: #f8f9fa;
  border-left: 6px solid #0A2463;
  position: relative;
  transition: all 0.3s ease;
}

.service-card::before, .service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #D8315B;
  transition: height 0.3s ease;
}

.service-card:hover, .service-detail-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.15);
}

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

.service-card h3, .service-detail-card h3 {
  margin-bottom: 16px;
  color: #0A2463;
}

.service-card p, .service-detail-card p {
  margin-bottom: 24px;
  color: #444;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #D8315B;
  margin-bottom: 16px;
}

.service-features {
  margin-top: 16px;
}

.service-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #444;
  border-bottom: 1px solid rgba(10, 36, 99, 0.1);
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #0A2463;
  font-weight: 700;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* =================================================================
   BENEFITS GRID - GEOMETRIC ICONS
   ================================================================= */
.benefits {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

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

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

.benefit-item {
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #ffffff;
  text-align: center;
  border-top: 6px solid #0A2463;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #D8315B;
  transition: width 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.15);
}

.benefit-item:hover::after {
  width: 100%;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0A2463;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
}

.benefit-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.benefit-item h3 {
  margin-bottom: 16px;
}

.benefit-item p {
  color: #555;
  font-size: 14px;
}

/* =================================================================
   TESTIMONIALS - GEOMETRIC CARDS WITH PROPER CONTRAST
   ================================================================= */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 500px;
  padding: 32px;
  background-color: #ffffff;
  border-left: 6px solid #D8315B;
  box-shadow: 0 4px 16px rgba(10, 36, 99, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: rgba(10, 36, 99, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid #e9ecef;
}

.testimonial-author strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #0A2463;
}

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

/* =================================================================
   CTA BANNER - GEOMETRIC EMPHASIS
   ================================================================= */
.cta-banner, .cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before, .cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.05) 35px, rgba(255,255,255,0.05) 70px);
}

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

.cta-content h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-content p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.guarantee-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: #D8315B;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* =================================================================
   PRODUCTS PAGE - GEOMETRIC CARDS
   ================================================================= */
.product-showcase {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

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

.product-card {
  flex: 1 1 320px;
  min-width: 300px;
  max-width: 380px;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 3px solid #e9ecef;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card.featured {
  border-color: #D8315B;
  border-width: 4px;
  transform: scale(1.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.2);
  border-color: #0A2463;
}

.product-card h3 {
  margin-bottom: 16px;
  color: #0A2463;
}

.product-features {
  margin: 24px 0;
  flex-grow: 1;
}

.product-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #444;
  border-bottom: 1px solid #e9ecef;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0A2463;
  font-weight: 700;
}

.product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #D8315B;
  margin: 24px 0;
  text-align: center;
}

/* =================================================================
   PROJECTS & REALIZACE - GEOMETRIC CARDS
   ================================================================= */
.projects, .project-stats {
  padding: 80px 20px;
  background-color: #ffffff;
}

.project-stats h2 {
  text-align: center;
  margin-bottom: 48px;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.project-card {
  flex: 1 1 280px;
  min-width: 280px;
  padding: 32px 24px;
  background-color: #f8f9fa;
  border-top: 6px solid #0A2463;
  position: relative;
  transition: all 0.3s ease;
}

.project-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 6px;
  background-color: #D8315B;
  transition: width 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.15);
}

.project-card:hover::after {
  width: 100%;
}

.project-category {
  display: inline-block;
  padding: 6px 12px;
  background-color: #0A2463;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.project-stats-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #e9ecef;
}

.project-stats-list li {
  padding: 6px 0;
  color: #666;
  font-size: 14px;
}

/* =================================================================
   TECHNOLOGY PAGE - GEOMETRIC SECTIONS
   ================================================================= */
.tech-overview, .tech-detail {
  padding: 80px 20px;
}

.tech-overview {
  background-color: #f8f9fa;
  text-align: center;
}

.tech-overview h2 {
  margin-bottom: 16px;
}

.tech-overview > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 48px;
}

.tech-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-pillar {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 3px solid #0A2463;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.tech-pillar:hover {
  transform: scale(1.05);
  border-color: #D8315B;
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.2);
}

.tech-pillar h4 {
  color: #0A2463;
  margin-bottom: 12px;
  font-size: 18px;
}

.tech-pillar p {
  color: #666;
  font-size: 14px;
}

.tech-section {
  margin-bottom: 48px;
  padding: 32px;
  background-color: #ffffff;
  border-left: 6px solid #0A2463;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.tech-section h3 {
  margin-bottom: 16px;
  color: #0A2463;
}

.tech-specs {
  margin-top: 16px;
}

.tech-specs li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #444;
  border-bottom: 1px solid #e9ecef;
}

.tech-specs li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #0A2463;
  font-weight: 700;
  font-size: 18px;
}

.certifications {
  padding: 80px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

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

.cert-item {
  flex: 0 1 auto;
  padding: 16px 32px;
  background-color: #ffffff;
  border: 3px solid #0A2463;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0A2463;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* =================================================================
   CONTACT PAGE - GEOMETRIC LAYOUT
   ================================================================= */
.contact-info, .contact-form-section {
  padding: 80px 20px;
}

.contact-info {
  background-color: #f8f9fa;
}

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

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

.contact-method {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 400px;
  padding: 32px;
  background-color: #ffffff;
  border-top: 6px solid #0A2463;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.15);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0A2463;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.method-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.contact-method h4 {
  margin-bottom: 16px;
}

.availability {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  padding: 20px;
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  margin-bottom: 32px;
}

.form-note p {
  margin-bottom: 8px;
  color: #856404;
}

.form-fields-display {
  padding: 32px;
  background-color: #f8f9fa;
  border: 2px solid #0A2463;
}

.field-item {
  margin-bottom: 24px;
}

.field-item label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0A2463;
  margin-bottom: 8px;
}

.field-placeholder {
  padding: 12px 16px;
  background-color: #ffffff;
  border: 2px solid #e9ecef;
  color: #999;
  font-style: italic;
}

.form-actions {
  margin-top: 32px;
}

.form-note-small {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
}

.location, .opening-hours {
  padding: 80px 20px;
}

.location {
  background-color: #ffffff;
}

.opening-hours {
  background-color: #f8f9fa;
}

.address-block, .hours-list {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #ffffff;
  border-left: 6px solid #0A2463;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.hours-list p {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}

.hours-list .note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #e9ecef;
  font-style: italic;
  color: #666;
}

/* =================================================================
   THANK YOU PAGE - GEOMETRIC SUCCESS
   ================================================================= */
.thank-you-page {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 60vh;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background-color: #28a745;
  color: #ffffff;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
}

.thank-you-content h1 {
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.confirmation-box, .confirmation-message {
  padding: 32px;
  background-color: #ffffff;
  border-left: 6px solid #0A2463;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.next-steps {
  margin-top: 16px;
}

.next-steps li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #444;
  border-bottom: 1px solid #e9ecef;
}

.next-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
  font-size: 18px;
}

.actions {
  margin: 48px 0;
}

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.action-card {
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 280px;
  padding: 24px;
  background-color: #ffffff;
  border: 3px solid #0A2463;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  border-color: #D8315B;
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.15);
}

.action-card h4 {
  color: #0A2463;
  margin-bottom: 8px;
}

.action-card p {
  font-size: 14px;
  color: #666;
}

.social-proof {
  margin: 48px 0;
}

.proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.proof-item {
  flex: 1 1 180px;
  padding: 16px;
  background-color: #ffffff;
  border-top: 4px solid #D8315B;
  text-align: center;
  font-size: 14px;
}

.proof-item strong {
  display: block;
  font-size: 24px;
  color: #0A2463;
  margin-bottom: 4px;
}

.return-home, .return-action {
  margin-top: 40px;
}

/* =================================================================
   LEGAL PAGES - GEOMETRIC STRUCTURE
   ================================================================= */
.legal-page {
  padding: 60px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-left: 6px solid #0A2463;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.legal-meta {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid #0A2463;
}

.legal-content h3 {
  margin-top: 24px;
}

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

.legal-content li {
  list-style: disc;
  padding: 6px 0;
  color: #444;
}

.rights-list li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid #e9ecef;
  list-style: none;
}

.rights-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #0A2463;
  font-weight: 700;
}

/* =================================================================
   COMPANY STORY & VALUES - GEOMETRIC TEXT SECTIONS
   ================================================================= */
.company-story, .values, .expertise {
  padding: 80px 20px;
}

.company-story {
  background-color: #ffffff;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.values {
  background-color: #f8f9fa;
}

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

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

.value-item {
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #ffffff;
  text-align: center;
  border-top: 6px solid #0A2463;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0A2463;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.value-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.expertise {
  background-color: #ffffff;
  text-align: center;
}

.expertise h2 {
  margin-bottom: 16px;
}

.expertise > p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.expertise-item {
  flex: 1 1 200px;
  padding: 20px;
  background-color: #f8f9fa;
  border: 3px solid #0A2463;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.expertise-item strong {
  color: #0A2463;
  font-size: 16px;
}

/* =================================================================
   CUSTOMIZATION & PROCESS - GEOMETRIC GRIDS
   ================================================================= */
.customization, .process, .warranty {
  padding: 80px 20px;
}

.customization {
  background-color: #f8f9fa;
}

.customization h2, .process h2, .warranty h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.custom-option {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 24px;
  background-color: #ffffff;
  border-left: 6px solid #0A2463;
  transition: all 0.3s ease;
}

.custom-option:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.15);
}

.custom-option h4 {
  color: #0A2463;
  margin-bottom: 8px;
}

.custom-option p {
  font-size: 14px;
  color: #666;
}

.process {
  background-color: #ffffff;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1 1 220px;
  min-width: 200px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0A2463;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.process-step h4 {
  color: #0A2463;
}

.warranty {
  background-color: #f8f9fa;
}

.warranty-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.warranty-highlight {
  padding: 32px;
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.warranty-highlight strong {
  display: block;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 8px;
}

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

.warranty-list {
  padding: 32px;
  background-color: #ffffff;
  border-left: 6px solid #0A2463;
}

.warranty-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #444;
  border-bottom: 1px solid #e9ecef;
}

.warranty-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0A2463;
  font-weight: 700;
  font-size: 18px;
}

/* =================================================================
   FOOTER - GEOMETRIC STRUCTURE
   ================================================================= */
footer {
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 20px 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D8315B 0%, #3E92CC 100%);
}

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

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid #D8315B;
  display: inline-block;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #D8315B;
  padding-left: 8px;
}

.footer-contact p {
  margin-bottom: 12px;
}

.footer-contact a {
  color: #D8315B;
  text-decoration: underline;
}

.footer-contact a:hover {
  color: #ffffff;
}

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

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

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

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.legal-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-decoration: underline;
}

.legal-nav a:hover {
  color: #D8315B;
}

/* =================================================================
   COOKIE CONSENT BANNER - GEOMETRIC FIXED BOTTOM
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0A2463;
  color: #ffffff;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D8315B 0%, #3E92CC 100%);
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-btn.accept {
  background-color: #D8315B;
  color: #ffffff;
}

.cookie-btn.accept:hover {
  background-color: #ffffff;
  color: #D8315B;
}

.cookie-btn.reject {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-btn.reject:hover {
  background-color: #ffffff;
  color: #0A2463;
}

.cookie-btn.settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn.settings:hover {
  border-color: #ffffff;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  border: 4px solid #0A2463;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: #0A2463;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f8f9fa;
  border-left: 4px solid #0A2463;
}

.cookie-category h4 {
  margin-bottom: 8px;
  color: #0A2463;
}

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

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

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

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav, .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Grids */
  .stats-grid,
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .products-grid,
  .projects-grid,
  .values-grid,
  .contact-methods,
  .tech-pillars,
  .process-steps,
  .customization-grid {
    flex-direction: column;
  }
  
  .stat-item,
  .service-card,
  .benefit-item,
  .testimonial-card,
  .product-card,
  .project-card,
  .value-item,
  .contact-method,
  .tech-pillar,
  .process-step,
  .custom-option {
    flex: 1 1 auto;
    min-width: 100%;
  }
  
  /* CTA */
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-legal {
    text-align: center;
  }
  
  .legal-nav {
    flex-direction: column;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  /* Thank You */
  .action-links {
    flex-direction: column;
  }
  
  .action-card {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .product-price {
    font-size: 24px;
  }
}

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

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

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

/* =================================================================
   END OF STYLESHEET
   ================================================================= */