/* =================================================================
   WHISPERING SHADOW - GEOMETRIC STRUCTURED DESIGN
   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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* =================================================================
   TYPOGRAPHY - GEOMETRIC & STRUCTURED
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h3 {
  font-size: 24px;
  letter-spacing: 0.03em;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
}

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

ul {
  list-style: none;
}

/* =================================================================
   CONTAINER & LAYOUT STRUCTURE
   ================================================================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* =================================================================
   HEADER - ANGULAR & STRUCTURED
   ================================================================= */

header {
  background: #2C3E50;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.15);
  border-bottom: 3px solid #E67E22;
}

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

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom: 2px solid #E67E22;
  color: #E67E22;
}

.cta-buttons {
  display: none;
}

/* =================================================================
   MOBILE MENU - GEOMETRIC SLIDE
   ================================================================= */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #E67E22;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #2C3E50;
  z-index: 2000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #E67E22;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #E67E22;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(230, 126, 34, 0.1);
  border-left: 4px solid #E67E22;
  transform: translateX(8px);
}

/* =================================================================
   BUTTONS - ANGULAR & GEOMETRIC
   ================================================================= */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  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: #E67E22;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #D35400;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(230, 126, 34, 0.3);
}

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

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

/* =================================================================
   HERO SECTION - GEOMETRIC STRUCTURE
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(230, 126, 34, 0.1);
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
}

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

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

.hero-subtitle {
  color: #ECF0F1;
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.indicator strong {
  color: #E67E22;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.indicator span {
  color: #ECF0F1;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =================================================================
   SECTIONS - GRID LAYOUTS (FLEXBOX ONLY)
   ================================================================= */

.value-proposition,
.services-overview,
.how-it-works,
.social-proof,
.cta-final {
  padding: 60px 20px;
}

.value-proposition {
  background: #F8F9FA;
}

.value-proposition h2,
.services-overview h2,
.how-it-works h2,
.social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

/* Benefits Grid - Flexbox */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  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;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 #E67E22;
}

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

.benefit p {
  color: #34495E;
  font-size: 15px;
}

/* Services Grid - Flexbox */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  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);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #E67E22;
  box-shadow: 8px 8px 0 rgba(230, 126, 34, 0.2);
}

.service-card h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 16px;
}

.service-card p {
  color: #34495E;
  font-size: 15px;
  margin-bottom: 24px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E67E22;
  font-family: 'Montserrat', sans-serif;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #34495E;
  max-width: 800px;
  margin: 0 auto 48px;
}

/* Process Steps - Flexbox */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  position: relative;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

.step h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: #34495E;
  font-size: 14px;
}

.timeline-note {
  text-align: center;
  font-size: 16px;
  color: #E67E22;
  font-weight: 600;
  margin-bottom: 32px;
}

/* =================================================================
   TESTIMONIALS - GEOMETRIC CARDS
   ================================================================= */

.social-proof {
  background: #F8F9FA;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

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

.testimonial-card .author strong {
  color: #2C3E50;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-card .author span {
  color: #7F8C8D;
  font-size: 14px;
}

/* Stats Row - Flexbox */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
}

.stat strong {
  font-size: 36px;
  color: #E67E22;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.stat span {
  font-size: 14px;
  color: #34495E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

/* =================================================================
   CTA SECTIONS - ANGULAR DESIGN
   ================================================================= */

.cta-final {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(230, 126, 34, 0.1);
  clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 30% 100%);
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

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

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

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

.urgency {
  color: #E67E22;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.guarantee {
  color: #ECF0F1;
  font-size: 14px;
}

/* =================================================================
   FOOTER - STRUCTURED LAYOUT
   ================================================================= */

footer {
  background: #2C3E50;
  color: #ECF0F1;
  padding: 60px 20px 20px;
  border-top: 4px solid #E67E22;
}

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

.footer-col {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
}

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

.tagline {
  color: #95A5A6;
  font-size: 14px;
  font-style: italic;
}

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

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

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

.footer-nav a:hover {
  color: #E67E22;
  transform: translateX(4px);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid #34495E;
}

.footer-bottom p {
  color: #95A5A6;
  font-size: 14px;
}

/* =================================================================
   PAGE-SPECIFIC STYLES
   ================================================================= */

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  color: #7F8C8D;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumbs a {
  color: #E67E22;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Page Hero */
.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #ECF0F1;
  font-size: 18px;
}

/* Service Details */
.services-detailed {
  padding: 60px 20px;
}

.service-detail {
  margin-bottom: 60px;
  padding: 40px;
  background: #F8F9FA;
  border: 3px solid #2C3E50;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.service-detail h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.service-detail h3 {
  color: #E67E22;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-detail ul {
  margin-bottom: 24px;
}

.service-detail ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #34495E;
}

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

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

/* Packages */
.packages {
  padding: 60px 20px;
  background: #F8F9FA;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.package-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  padding: 40px 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  position: relative;
  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;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 rgba(230, 126, 34, 0.2);
}

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

.package-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E67E22;
  color: #FFFFFF;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-card h3 {
  color: #2C3E50;
  font-size: 24px;
  margin-bottom: 16px;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: #E67E22;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.savings {
  color: #27AE60;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.package-card ul {
  margin-bottom: 24px;
  text-align: left;
}

.package-card ul li {
  padding: 12px 0 12px 24px;
  position: relative;
  color: #34495E;
  border-bottom: 1px solid #ECF0F1;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: 700;
}

.for-whom {
  color: #7F8C8D;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 24px;
}

/* Industries Grid */
.industries {
  padding: 60px 20px;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.industry {
  flex: 1 1 calc(33.333% - 11px);
  min-width: 200px;
  padding: 20px;
  background: #2C3E50;
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease;
}

.industry:hover {
  background: #E67E22;
  transform: translateY(-4px);
}

.note {
  text-align: center;
  color: #7F8C8D;
  font-style: italic;
}

/* About Page */
.story,
.values,
.approach,
.achievements,
.why-different {
  padding: 60px 20px;
}

.values {
  background: #F8F9FA;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.value-card h3 {
  color: #E67E22;
  margin-bottom: 12px;
}

.approach-list {
  max-width: 800px;
  margin: 0 auto;
}

.approach-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #34495E;
  font-size: 16px;
  margin-bottom: 16px;
}

.approach-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 24px;
  font-weight: 700;
}

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

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px;
  background: #F8F9FA;
  border: 3px solid #2C3E50;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.stat-card strong {
  display: block;
  font-size: 48px;
  color: #E67E22;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.stat-card p {
  color: #34495E;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.difference {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  padding: 32px;
  background: #F8F9FA;
  border-left: 4px solid #E67E22;
}

.difference h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

/* Process Page */
.process-overview {
  padding: 60px 20px;
}

.step-detail {
  flex: 1 1 100%;
  padding: 32px;
  background: #F8F9FA;
  border: 3px solid #2C3E50;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.step-detail .step-number {
  flex-shrink: 0;
  margin: 0;
}

.step-detail h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.duration {
  color: #E67E22;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

.flexibility-note {
  text-align: center;
  color: #7F8C8D;
  font-style: italic;
  margin-top: 24px;
}

/* Communication */
.communication {
  padding: 60px 20px;
  background: #F8F9FA;
}

.communication-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.channel {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.channel h3 {
  color: #E67E22;
  margin-bottom: 12px;
}

/* Guarantees */
.guarantees {
  padding: 60px 20px;
}

.guarantees-list {
  max-width: 800px;
  margin: 0 auto;
}

.guarantees-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #34495E;
  font-size: 16px;
  margin-bottom: 16px;
}

.guarantees-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27AE60;
  font-size: 24px;
  font-weight: 700;
}

.satisfaction {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: #E8F8F5;
  border: 3px solid #27AE60;
  color: #27AE60;
  font-size: 20px;
}

/* FAQ */
.faq-process,
.faq-pricing,
.faq-contact {
  padding: 60px 20px;
  background: #F8F9FA;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

.faq-item p {
  color: #34495E;
  font-size: 15px;
}

/* Pricing */
.pricing-philosophy {
  padding: 60px 20px;
  background: #F8F9FA;
}

.philosophy-list {
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #34495E;
  font-size: 16px;
  margin-bottom: 16px;
}

.philosophy-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 24px;
  font-weight: 700;
}

.value-statement {
  text-align: center;
  font-size: 20px;
  color: #E67E22;
  font-weight: 700;
  margin-top: 32px;
}

.pricing-single {
  padding: 60px 20px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.price-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  text-align: center;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(230, 126, 34, 0.2);
}

.price-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

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

.payment-type {
  color: #7F8C8D;
  font-size: 14px;
  margin-bottom: 24px;
}

.price-card ul {
  margin-bottom: 24px;
  text-align: left;
}

.price-card ul li {
  padding: 12px 0 12px 24px;
  position: relative;
  color: #34495E;
  font-size: 14px;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: 700;
}

.payment-terms,
.guarantees-pricing {
  padding: 60px 20px;
  background: #F8F9FA;
}

.terms-list {
  max-width: 800px;
  margin: 0 auto;
}

.terms-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #34495E;
  font-size: 16px;
  margin-bottom: 12px;
}

.terms-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 20px;
  font-weight: 700;
}

/* Portfolio */
.featured-case {
  padding: 60px 20px;
  background: #F8F9FA;
}

.featured-case .badge {
  display: inline-block;
  background: #E67E22;
  color: #FFFFFF;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.industry {
  color: #7F8C8D;
  font-size: 14px;
  margin-bottom: 24px;
}

.case-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.case-section {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
}

.case-section h3 {
  color: #E67E22;
  margin-bottom: 16px;
}

.case-section ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #34495E;
}

.case-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

.results li {
  color: #27AE60;
  font-weight: 600;
}

.testimonial {
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  border-left: 8px solid #E67E22;
  font-style: italic;
}

.testimonial .author {
  margin-top: 16px;
  font-style: normal;
  color: #7F8C8D;
}

.case-studies-grid {
  padding: 60px 20px;
}

.cases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.case-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: #E67E22;
}

.case-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.case-industry,
.case-duration,
.services {
  color: #7F8C8D;
  font-size: 14px;
  margin-bottom: 8px;
}

.challenge {
  color: #34495E;
  font-weight: 600;
  margin: 16px 0 8px;
}

.results-short {
  color: #27AE60;
  font-weight: 600;
  margin-bottom: 16px;
}

.results-overview {
  padding: 60px 20px;
  background: #2C3E50;
}

.results-overview h2 {
  color: #FFFFFF;
}

.results-overview .stat strong {
  color: #E67E22;
}

.results-overview .stat span {
  color: #ECF0F1;
}

.disclaimer {
  text-align: center;
  color: #95A5A6;
  font-size: 14px;
  font-style: italic;
  margin-top: 32px;
}

.testimonials-section {
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.rating {
  color: #F39C12;
  font-size: 18px;
  margin-top: 8px;
}

/* Contact Page */
.contact-methods {
  padding: 60px 20px;
  background: #F8F9FA;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.method {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.method h3 {
  color: #E67E22;
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 60px 20px;
}

.form-intro {
  text-align: center;
  color: #7F8C8D;
  margin-bottom: 32px;
}

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

.form-note {
  padding: 32px;
  background: #F8F9FA;
  border: 3px solid #2C3E50;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.form-note ul {
  margin: 16px 0;
}

.form-note ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #34495E;
}

.form-note ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

.privacy-note {
  font-size: 14px;
  color: #7F8C8D;
  font-style: italic;
  margin-top: 16px;
}

.privacy-note a {
  color: #E67E22;
  text-decoration: underline;
}

.free-audit {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
}

.free-audit h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 24px;
}

.free-audit > p {
  color: #ECF0F1;
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.audit-benefits {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  margin-bottom: 32px;
}

.audit-benefits ul {
  margin-bottom: 24px;
}

.audit-benefits ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #ECF0F1;
  font-size: 16px;
}

.audit-benefits ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 20px;
  font-weight: 700;
}

.audit-value,
.audit-duration,
.no-obligation {
  color: #ECF0F1;
  text-align: center;
  margin: 16px 0;
}

.audit-value strong {
  color: #E67E22;
}

.free-audit .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

.map-section {
  padding: 60px 20px;
  background: #F8F9FA;
}

.map-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.map-info .address {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.visit-note {
  color: #E67E22;
  font-weight: 600;
  font-style: italic;
  margin-top: 24px;
}

.response-expectations {
  padding: 60px 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.steps .step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.step-num {
  display: block;
  width: 50px;
  height: 50px;
  background: #E67E22;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.commitment {
  text-align: center;
  color: #E67E22;
  font-weight: 600;
  font-style: italic;
}

/* Legal Pages */
.legal-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
}

.legal-hero h1 {
  color: #FFFFFF;
}

.last-updated {
  color: #95A5A6;
  font-size: 14px;
}

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content p {
  color: #34495E;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
}

.legal-content ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #34495E;
}

.legal-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

.contact-dpo,
.contact-legal,
.rights-overview {
  padding: 40px 20px;
  background: #F8F9FA;
  text-align: center;
}

.contact-dpo h2,
.contact-legal h2,
.rights-overview h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.cookie-types {
  padding: 60px 20px;
  background: #F8F9FA;
}

.cookie-type {
  margin-bottom: 32px;
  padding: 24px;
  background: #FFFFFF;
  border-left: 4px solid #E67E22;
}

.cookie-type h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.cookie-management {
  padding: 60px 20px;
}

.cookie-management ul {
  max-width: 700px;
  margin: 0 auto;
}

.cookie-management ul li {
  padding: 12px 0 12px 24px;
  position: relative;
  color: #34495E;
  margin-bottom: 12px;
}

.cookie-management ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
}

.icon-check {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  color: #27AE60;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  font-weight: 700;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #FFFFFF;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.next-steps {
  padding: 60px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.steps-grid .step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
}

.steps-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.steps-simple .step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  padding: 24px;
  background: #F8F9FA;
  border: 3px solid #2C3E50;
  text-align: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.while-you-wait {
  padding: 60px 20px;
  background: #F8F9FA;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.resource {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.resource h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.resource p {
  color: #34495E;
  margin-bottom: 24px;
}

.faq-quick {
  padding: 60px 20px;
}

.testimonial-single {
  padding: 60px 20px;
  background: #F8F9FA;
}

.testimonial-card-large {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #FFFFFF;
  border: 3px solid #2C3E50;
  border-left: 8px solid #E67E22;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

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

.cta-alternative {
  padding: 60px 20px;
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  padding: 32px;
  background: #F8F9FA;
  border: 3px solid #2C3E50;
  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);
}

.cta-card:hover {
  background: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-4px);
}

.cta-card h3 {
  margin-bottom: 12px;
}

.cta-card:hover h3,
.cta-card:hover p {
  color: #FFFFFF;
}

/* =================================================================
   COOKIE CONSENT BANNER - GEOMETRIC DESIGN
   ================================================================= */

#cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #2C3E50;
  padding: 24px 20px;
  z-index: 9999;
  border-top: 4px solid #E67E22;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner.show {
  bottom: 0;
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #ECF0F1;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-accept {
  background: #E67E22;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #D35400;
}

.cookie-reject {
  background: transparent;
  color: #ECF0F1;
  border: 2px solid #ECF0F1;
}

.cookie-reject:hover {
  background: #34495E;
}

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

.cookie-settings:hover {
  background: #E67E22;
  color: #FFFFFF;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #E67E22;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #D35400;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  color: #2C3E50;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-left: 4px solid #E67E22;
}

.cookie-category h3 {
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #BDC3C7;
  border: none;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: #27AE60;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #7F8C8D;
  font-size: 14px;
}

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

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

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

  .hero h1 {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .benefit {
    flex: 1 1 calc(50% - 12px);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .step {
    flex: 1 1 calc(25% - 18px);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .benefit {
    flex: 1 1 calc(25% - 18px);
  }

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

@media (max-width: 767px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .trust-indicators {
    flex-direction: column;
  }

  .benefit,
  .service-card,
  .step {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .stats-row {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .package-card {
    flex: 1 1 100%;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .industry {
    flex: 1 1 100%;
  }

  .value-card,
  .difference {
    flex: 1 1 100%;
  }

  .case-card {
    flex: 1 1 100%;
  }

  .method {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.text-center {
  text-align: center;
}

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

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

/* =================================================================
   ANIMATIONS
   ================================================================= */

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

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

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
  }
}
