/* ===================================
   CLOUDMONETARY - CSS STYLESHEET
   Geometric Structured Design Style
   ================================== */

/* CSS RESET & BASE STYLES */
* {
  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', Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* GEOMETRIC STRUCTURED TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #1A365D;
}

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

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

li {
  margin-bottom: 8px;
}

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

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

/* GEOMETRIC BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  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::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5282 0%, #1A365D 100%);
  color: #FFFFFF;
  border-color: #2C5282;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1A365D 0%, #0F2642 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(28, 82, 130, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2C5282;
  border: 2px solid #2C5282;
}

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

.btn-outline {
  background: transparent;
  color: #1A365D;
  border: 2px solid #1A365D;
}

.btn-outline:hover {
  background: #1A365D;
  color: #FFFFFF;
}

/* HEADER - GEOMETRIC STRUCTURE */
header {
  background: #FFFFFF;
  border-bottom: 3px solid #2C5282;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #2C5282;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #1A365D;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A365D 0%, #2C5282 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FFFFFF;
  color: #1A365D;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  clip-path: polygon(4px 0, 100% 0, 100% 100%, 0 100%, 0 4px);
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.2);
  border-left-color: #63B3ED;
  transform: translateX(8px);
}

/* HERO SECTION - GEOMETRIC STYLE */
.hero {
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(44, 82, 130, 0.1) 0%, transparent 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, transparent 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
  z-index: 0;
}

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

.hero h1 {
  color: #1A365D;
  margin-bottom: 24px;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: #2D3748;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

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

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #FFFFFF;
  border-left: 4px solid #2C5282;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.badge img {
  width: 24px;
  height: 24px;
}

.badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A365D;
}

/* BENEFITS SECTION - GEOMETRIC GRID */
.benefits {
  padding: 80px 0;
  background: #FFFFFF;
}

.benefits h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.benefit-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 400px;
  padding: 40px 32px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-top: 4px solid #2C5282;
  text-align: center;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

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

.benefit-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
  font-size: 20px;
  text-transform: uppercase;
}

.benefit-card p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 0;
}

/* SERVICES PREVIEW - GEOMETRIC CARDS */
.services-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, #EDF2F7 0%, #F7FAFC 100%);
}

.services-preview h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

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

.service-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 400px;
  padding: 40px 32px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(44, 82, 130, 0.2);
  border-color: #2C5282;
}

.service-card.featured {
  border: 3px solid #2C5282;
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #2C5282;
  color: #FFFFFF;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.service-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
  font-size: 22px;
  text-transform: uppercase;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2C5282;
  margin-bottom: 8px;
}

.timeframe {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
  font-style: italic;
}

.service-card p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

/* PROCESS OVERVIEW - GEOMETRIC STEPS */
.process-overview {
  padding: 80px 0;
  background: #FFFFFF;
}

.process-overview h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.step:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

.step-number {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2C5282 0%, #1A365D 100%);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.step h3 {
  color: #1A365D;
  margin-bottom: 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.step p {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* TESTIMONIALS - GEOMETRIC CARDS */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.testimonials h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  padding: 40px 32px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-left: 4px solid #2C5282;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(44, 82, 130, 0.15);
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: #2D3748;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
}

.quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  color: #2C5282;
  font-family: Georgia, serif;
  line-height: 1;
}

.author {
  color: #1A365D;
  font-weight: 600;
  margin-bottom: 0;
}

.author strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

/* GUARANTEES SECTION */
.guarantees {
  padding: 80px 0;
  background: #FFFFFF;
}

.guarantees h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.guarantee-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 400px;
  padding: 32px 24px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  text-align: center;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.guarantee-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

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

.guarantee-card h3 {
  color: #1A365D;
  margin-bottom: 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.guarantee-card p {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* FINAL CTA - GEOMETRIC STYLE */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

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

.cta-buttons .btn-primary {
  background: #FFFFFF;
  color: #1A365D;
  border-color: #FFFFFF;
}

.cta-buttons .btn-primary:hover {
  background: #63B3ED;
  color: #FFFFFF;
  border-color: #63B3ED;
}

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

.cta-buttons .btn-secondary:hover {
  background: #FFFFFF;
  color: #1A365D;
}

/* FOOTER - GEOMETRIC STRUCTURE */
footer {
  background: #0F2642;
  color: #E2E8F0;
  padding: 60px 0 24px;
  border-top: 4px solid #2C5282;
}

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

.footer-col {
  flex: 1 1 250px;
}

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

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #CBD5E0;
}

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

.footer-col nav a {
  color: #CBD5E0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal a:hover {
  color: #63B3ED;
}

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

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: #E2E8F0;
  font-size: 18px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* PRICING CARDS */
.pricing-intro {
  padding: 40px 0;
  background: #F7FAFC;
  text-align: center;
}

.pricing-intro p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #2D3748;
  line-height: 1.7;
}

.pricing-cards {
  padding: 80px 0;
  background: #FFFFFF;
}

.pricing-cards h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  padding: 40px 32px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(44, 82, 130, 0.2);
  background: #FFFFFF;
}

.pricing-card.featured {
  border: 3px solid #2C5282;
  background: #FFFFFF;
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #2C5282;
  color: #FFFFFF;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.pricing-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* PAYMENT TERMS */
.payment-terms {
  padding: 60px 0;
  background: #F7FAFC;
  text-align: center;
}

.payment-terms h2 {
  color: #1A365D;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.payment-terms p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #2D3748;
}

/* FAQ SECTION */
.faq {
  padding: 80px 0;
  background: #FFFFFF;
}

.faq h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-left: 4px solid #2C5282;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.1);
}

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

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

/* PROCESS INTRO */
.process-intro {
  padding: 40px 0;
  background: #F7FAFC;
}

.process-intro p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #2D3748;
  line-height: 1.7;
}

.process-intro ul {
  max-width: 600px;
  margin: 24px auto 0;
  list-style: none;
  padding: 0;
}

.process-intro li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #2D3748;
}

.process-intro li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #2C5282;
  font-weight: bold;
}

/* STEPS LIST */
.steps-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-left: 4px solid #2C5282;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: #FFFFFF;
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
  transform: translateX(8px);
}

.step-item .step-number {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  line-height: 72px;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: #1A365D;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.duration {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-bottom: 12px;
}

.step-content p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 0;
}

/* QUALITY STANDARDS */
.quality-standards {
  padding: 80px 0;
  background: #F7FAFC;
}

.quality-standards h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.standard-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  padding: 32px 24px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-top: 4px solid #2C5282;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

.standard-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.standard-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A5568;
  margin-bottom: 8px;
}

.standard-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5282;
  font-weight: bold;
}

/* PORTFOLIO INTRO */
.portfolio-intro {
  padding: 40px 0;
  background: #F7FAFC;
  text-align: center;
}

.portfolio-intro p {
  max-width: 800px;
  margin: 0 auto 32px;
  color: #2D3748;
  line-height: 1.7;
}

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

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-top: 4px solid #2C5282;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #2C5282;
  line-height: 1;
  margin-bottom: 8px;
}

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

/* PORTFOLIO GRID */
.portfolio-grid {
  padding: 80px 0;
  background: #FFFFFF;
}

.portfolio-grid h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.project-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  padding: 32px 24px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-left: 4px solid #2C5282;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 12px 24px rgba(44, 82, 130, 0.15);
}

.project-card h3 {
  color: #1A365D;
  margin-bottom: 8px;
  font-size: 20px;
}

.category {
  font-size: 14px;
  color: #2C5282;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.project-card p {
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  display: inline-block;
  padding: 6px 12px;
  background: #E2E8F0;
  color: #2D3748;
  font-size: 12px;
  font-weight: 600;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

/* COMPANY STORY */
.company-story {
  padding: 80px 0;
  background: #FFFFFF;
}

.company-story h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  color: #2D3748;
  line-height: 1.8;
}

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

.value-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 400px;
  padding: 32px 24px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-top: 4px solid #2C5282;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

.value-card h3 {
  color: #1A365D;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.value-card p {
  color: #4A5568;
  margin: 0;
  line-height: 1.7;
}

/* COMPANY STATS */
.company-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.company-stats h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.stat-card {
  flex: 1 1 200px;
  text-align: center;
  padding: 40px 24px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  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-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(44, 82, 130, 0.2);
}

.number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #2C5282;
  line-height: 1;
  margin-bottom: 12px;
}

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

/* EXPERTISE SECTION */
.expertise {
  padding: 80px 0;
  background: #FFFFFF;
}

.expertise h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.expertise-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 400px;
  padding: 32px 24px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  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;
}

.expertise-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

.expertise-card h3 {
  color: #1A365D;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.expertise-card p {
  color: #4A5568;
  margin: 0;
  line-height: 1.7;
}

/* CONTACT INFO */
.contact-info {
  padding: 60px 0;
  background: #F7FAFC;
}

.contact-info h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.contact-details {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-details p {
  color: #2D3748;
  margin-bottom: 24px;
  line-height: 1.8;
}

/* CONTACT INTRO */
.contact-intro {
  padding: 40px 0;
  background: #F7FAFC;
  text-align: center;
}

.contact-intro p {
  max-width: 800px;
  margin: 0 auto 24px;
  color: #2D3748;
  line-height: 1.7;
}

.benefits-list ul {
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  text-align: left;
}

.benefits-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #2D3748;
}

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

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.contact-form-section h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.form-notice {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: center;
}

.form-notice p {
  color: #4A5568;
  line-height: 1.7;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 32px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-left: 4px solid #2C5282;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  text-align: center;
}

.form-placeholder p {
  color: #2D3748;
  margin-bottom: 16px;
}

.form-placeholder ul {
  max-width: 400px;
  margin: 24px auto;
  list-style: none;
  padding: 0;
  text-align: left;
}

.form-placeholder li {
  padding: 8px 0;
  color: #4A5568;
  border-bottom: 1px solid #E2E8F0;
}

.form-placeholder em {
  display: block;
  margin: 24px 0;
  color: #718096;
  font-size: 14px;
}

/* CONTACT METHODS */
.contact-methods {
  padding: 80px 0;
  background: #F7FAFC;
}

.contact-methods h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.contact-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  padding: 32px 24px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  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;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

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

.contact-card h3 {
  color: #1A365D;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-value {
  font-weight: 600;
  color: #2C5282;
  margin-bottom: 12px;
}

.contact-card p {
  color: #4A5568;
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

/* BUSINESS HOURS */
.business-hours {
  padding: 60px 0;
  background: #FFFFFF;
}

.business-hours h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hours-table {
  max-width: 500px;
  margin: 0 auto;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #E2E8F0;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: #2D3748;
  font-weight: 600;
}

.hours-row span:last-child {
  color: #4A5568;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 0;
  background: #FFFFFF;
}

.legal-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 32px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-left: 4px solid #2C5282;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.legal-intro p {
  color: #2D3748;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background: #FAFAFA;
  border: 1px solid #E2E8F0;
}

.legal-section h2 {
  color: #1A365D;
  margin-bottom: 16px;
  font-size: 24px;
  text-transform: uppercase;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  color: #2D3748;
  line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
  padding-left: 32px;
}

.legal-section li {
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  text-align: center;
}

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

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

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

.thank-you-hero h1 {
  color: #1A365D;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.lead {
  font-size: 20px;
  color: #2D3748;
  font-weight: 600;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #4A5568;
  line-height: 1.7;
}

/* NEXT STEPS */
.next-steps {
  padding: 80px 0;
  background: #FFFFFF;
}

.next-steps h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.step-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  padding: 32px 24px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  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;
}

.step-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

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

.step-card h3 {
  color: #1A365D;
  margin-bottom: 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.step-card p {
  color: #4A5568;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* EXPLORE FURTHER */
.explore-further {
  padding: 80px 0;
  background: #F7FAFC;
}

.explore-further h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.explore-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 400px;
  padding: 32px 24px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  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;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

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

.explore-card h3 {
  color: #1A365D;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.explore-card p {
  color: #4A5568;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 80px 0;
  background: #FFFFFF;
}

.social-proof h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* BACK HOME */
.back-home {
  padding: 60px 0;
  background: #F7FAFC;
  text-align: center;
}

.explore-links {
  padding: 80px 0;
  background: #F7FAFC;
}

.explore-links h2 {
  text-align: center;
  color: #1A365D;
  margin-bottom: 48px;
  text-transform: uppercase;
}

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

.link-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  padding: 32px 24px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  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;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.1);
}

.link-card h3 {
  color: #1A365D;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.link-card p {
  color: #4A5568;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  color: #FFFFFF;
  padding: 24px;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

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

.cookie-text p {
  color: #E2E8F0;
  margin: 0;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

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

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

.modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px 32px;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #718096;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #1A365D;
  transform: rotate(90deg);
}

.modal-content h2 {
  color: #1A365D;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cookie-category {
  padding: 20px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  margin-bottom: 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.category-header h3 {
  color: #1A365D;
  font-size: 18px;
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #CBD5E0;
  transition: 0.3s;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.3s;
}

input:checked + .slider {
  background: #2C5282;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-description {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .service-card,
  .pricing-card {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards & Grids */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .guarantees-grid,
  .testimonials-grid,
  .pricing-grid,
  .stats-grid,
  .standards-grid,
  .projects-grid,
  .values-grid,
  .expertise-grid,
  .contact-grid,
  .steps-grid,
  .cards-grid,
  .stats-row,
  .links-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .guarantee-card,
  .testimonial-card,
  .pricing-card,
  .stat,
  .standard-card,
  .project-card,
  .value-card,
  .expertise-card,
  .contact-card,
  .step-card,
  .explore-card,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Process Steps */
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .price {
    font-size: 28px;
  }
  
  .stat-number,
  .number {
    font-size: 40px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .hero-cta,
  .cta-buttons,
  .btn {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
*:focus {
  outline: 2px solid #2C5282;
  outline-offset: 2px;
}

.btn:focus {
  outline: 3px solid #63B3ED;
}

/* Ensure sufficient contrast */
::selection {
  background: #2C5282;
  color: #FFFFFF;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}