/* ============================================
   DigiStorm - Professional Corporate Design
   CSS Stylesheet - Mobile First Approach
   ============================================ */

/* 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;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a4466;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

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

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

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

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

a:hover {
  color: #1a4466;
}

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

li {
  margin-bottom: 8px;
  color: #34495e;
}

strong {
  font-weight: 600;
  color: #1a4466;
}

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

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

.btn-primary {
  background-color: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background-color: #1a4466;
  border-color: #1a4466;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.2);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #2C5F8D;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1200;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #2C5F8D;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #2c3e50;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #e8f0f7;
  color: #2C5F8D;
  transform: translateX(8px);
}

/* HEADER */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  color: #2c3e50;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

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

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

.header-cta {
  display: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a4466 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #e8f0f7;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.hero-cta .btn {
  min-width: 240px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.trust-badges span {
  color: #e8f0f7;
  font-size: 14px;
  font-weight: 600;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a4466 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #e8f0f7;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.stats-line {
  margin-top: 24px;
  font-size: 14px;
  color: #e8f0f7;
  font-weight: 600;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* PROBLEM SECTION */
.problem-section {
  background-color: #ffffff;
}

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

.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.problem-item {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E94B3C;
}

.problem-item p {
  margin: 0;
  font-size: 16px;
  color: #2c3e50;
  font-weight: 600;
}

.solution-text {
  text-align: center;
  font-size: 18px;
  color: #2C5F8D;
  font-weight: 600;
  margin-top: 40px;
  padding: 24px;
  background-color: #e8f0f7;
  border-radius: 8px;
}

/* BENEFITS SECTION */
.benefits-section {
  background-color: #f8f9fa;
}

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

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.15);
}

.benefit-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

/* SERVICES PREVIEW */
.services-preview {
  background-color: #ffffff;
}

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

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  border-top: 4px solid #2C5F8D;
  transition: all 0.3s ease;
}

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

.service-card h3 {
  color: #1a4466;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #2C5F8D;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-card .btn {
  margin-top: 16px;
  width: 100%;
}

.services-preview > .container > .btn {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

/* PROCESS SECTION */
.process-section {
  background-color: #f8f9fa;
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

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

.step h3 {
  margin-bottom: 8px;
}

.step p {
  margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

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

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F5A623;
}

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

.testimonial-card .author {
  margin: 0;
  font-style: normal;
  color: #1a4466;
  font-weight: 600;
}

.testimonial-card .author strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-card .rating {
  color: #F5A623;
  font-size: 18px;
  margin-top: 12px;
}

.testimonials-section > .container > .btn {
  display: block;
  max-width: 320px;
  margin: 0 auto;
}

/* STATS SECTION */
.stats-section {
  background: linear-gradient(135deg, #1a4466 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

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

.stat-label {
  display: block;
  font-size: 16px;
  color: #e8f0f7;
  font-weight: 600;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4466 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

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

.cta-banner .btn-primary {
  background-color: #F5A623;
  border-color: #F5A623;
  font-size: 18px;
  padding: 16px 40px;
}

.cta-banner .btn-primary:hover {
  background-color: #E94B3C;
  border-color: #E94B3C;
}

.guarantee {
  margin-top: 24px;
  font-size: 14px;
  color: #e8f0f7;
  font-weight: 600;
}

/* TRAININGS PAGE */
.trainings-section {
  background-color: #ffffff;
}

.training-card {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-top: 4px solid #2C5F8D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.training-card h2 {
  color: #1a4466;
  margin-bottom: 8px;
}

.tagline {
  font-size: 14px;
  color: #F5A623;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.training-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #2C5F8D;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

.training-card ul {
  margin: 24px 0;
}

.training-card ul li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.training-card .btn {
  width: 100%;
  margin-top: 16px;
}

/* FAQ SECTION */
.faq-section {
  background-color: #f8f9fa;
}

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

.faq-item {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

/* ABOUT PAGE */
.story-section {
  background-color: #ffffff;
}

.story-section p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 24px;
}

.mission-section {
  background-color: #f8f9fa;
}

.mission-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.mission-item {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mission-item h2 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

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

.value-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #F5A623;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

/* TEAM SECTION */
.team-section {
  background-color: #ffffff;
}

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

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-member {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.team-member h3 {
  color: #1a4466;
  margin-bottom: 8px;
}

.role {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* METHODOLOGY SECTION */
.methodology-section {
  background-color: #f8f9fa;
}

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

.methodology-section > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.method-card h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

/* SUCCESS STORIES PAGE */
.featured-story {
  background-color: #f8f9fa;
}

.case-study {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F5A623;
}

.case-study h3 {
  color: #1a4466;
  margin-bottom: 8px;
}

.case-study h4 {
  color: #2C5F8D;
  margin-top: 24px;
  margin-bottom: 16px;
}

.quote {
  font-style: italic;
  font-size: 18px;
  color: #2C5F8D;
  padding: 24px;
  background-color: #e8f0f7;
  border-left: 4px solid #2C5F8D;
  border-radius: 4px;
  margin-top: 24px;
}

/* RESULTS SECTION */
.results-section {
  background-color: #ffffff;
}

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

.results-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-item {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #F5A623;
}

.result-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2C5F8D;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.result-item p {
  margin: 0;
  color: #2c3e50;
  font-weight: 600;
}

/* BLOG PAGE */
.featured-post {
  background-color: #f8f9fa;
}

.post-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.post-card.featured {
  border-top: 4px solid #2C5F8D;
}

.post-card h2 {
  color: #1a4466;
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: #5a6c7d;
  font-style: italic;
}

.blog-grid-section {
  background-color: #ffffff;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
}

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

/* NEWSLETTER SECTION */
.newsletter-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4466 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.newsletter-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-section > .container > p {
  color: #e8f0f7;
  font-size: 18px;
  margin-bottom: 32px;
}

.newsletter-benefits {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 8px;
  margin: 32px auto;
  max-width: 500px;
}

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

.newsletter-benefits li {
  color: #e8f0f7;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-benefits li:last-child {
  border-bottom: none;
}

.newsletter-note {
  font-size: 14px;
  color: #e8f0f7;
  font-style: italic;
}

/* CONTACT PAGE */
.contact-methods {
  background-color: #f8f9fa;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.contact-card strong {
  display: block;
  color: #1a4466;
  font-size: 18px;
  margin-bottom: 8px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background-color: #ffffff;
}

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

.contact-form-section > .container > p {
  text-align: center;
  color: #5a6c7d;
  margin-bottom: 40px;
}

.form-placeholder {
  background-color: #f8f9fa;
  padding: 60px 32px;
  border-radius: 8px;
  text-align: center;
  border: 2px dashed #d1d8dd;
}

.form-placeholder p {
  color: #5a6c7d;
  margin-bottom: 8px;
}

/* HOURS SECTION */
.hours-section {
  background-color: #f8f9fa;
}

.hours-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.hours-table {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto 24px;
}

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

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

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

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

.notice {
  text-align: center;
  color: #5a6c7d;
  font-style: italic;
  font-size: 14px;
}

/* LEGAL PAGES */
.legal-page {
  background-color: #ffffff;
  padding: 60px 20px;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

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

.legal-page ul {
  margin-bottom: 24px;
}

.legal-page p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* THANK YOU PAGE */
.thank-you-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

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

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

.lead {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 32px;
  line-height: 1.6;
}

.next-steps {
  background-color: #f8f9fa;
  padding: 48px 32px;
  border-radius: 8px;
  margin: 48px 0;
}

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

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.while-you-wait {
  margin: 48px 0;
}

.while-you-wait h2 {
  text-align: center;
  margin-bottom: 16px;
}

.while-you-wait > p {
  text-align: center;
  color: #5a6c7d;
  margin-bottom: 32px;
}

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

.resource-card {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.resource-card .btn {
  margin-top: 16px;
}

.trust-message {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4466 100%);
  color: #ffffff;
  padding: 48px 32px;
  border-radius: 8px;
  text-align: center;
  margin: 48px 0;
}

.trust-message h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 18px;
  color: #e8f0f7;
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-author {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 24px;
}

.trust-stats {
  color: #F5A623;
  font-weight: 600;
  font-size: 14px;
}

.contact-reminder {
  background-color: #e8f0f7;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
}

.contact-reminder h2 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  margin-top: 32px;
}

.contact-info h2 {
  color: #2C5F8D;
  margin-bottom: 24px;
}

/* FOOTER */
footer {
  background-color: #1a4466;
  color: #e8f0f7;
  padding: 60px 20px 32px;
}

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

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

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col a {
  color: #e8f0f7;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #F5A623;
}

.footer-col p {
  color: #e8f0f7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 240, 247, 0.2);
  padding-top: 32px;
  text-align: center;
}

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

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a4466;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cookie-consent p {
  color: #e8f0f7;
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cookie-consent-buttons .btn {
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
}

.btn-accept {
  background-color: #F5A623;
  color: #ffffff;
  border: 2px solid #F5A623;
}

.btn-accept:hover {
  background-color: #E94B3C;
  border-color: #E94B3C;
}

.btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

.btn-settings {
  background-color: transparent;
  color: #e8f0f7;
  border: 2px solid #e8f0f7;
}

.btn-settings:hover {
  background-color: rgba(232, 240, 247, 0.1);
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2c3e50;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  color: #1a4466;
  margin-bottom: 24px;
}

.cookie-category {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

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

.cookie-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d8dd;
  border-radius: 28px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle-slider:before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2C5F8D;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #5a6c7d;
  cursor: not-allowed;
}

.cookie-category p {
  color: #5a6c7d;
  font-size: 14px;
  margin: 0;
}

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

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

/* TABLET STYLES */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

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

  .hero-cta {
    flex-direction: row;
  }

  .trust-badges {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .problem-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .problem-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
  }

  .benefits-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 300px;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
  }

  .testimonials-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 300px;
  }

  .stats-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 200px;
  }

  .mission-grid {
    flex-direction: row;
  }

  .mission-item {
    flex: 1;
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
  }

  .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .team-member {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
  }

  .methodology-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .method-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
  }

  .results-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .result-item {
    flex: 1 1 calc(50% - 24px);
    min-width: 240px;
  }

  .blog-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 300px;
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 240px;
  }

  .resources-grid {
    flex-direction: row;
  }

  .resource-card {
    flex: 1;
  }

  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-col {
    flex: 1 1 calc(50% - 40px);
    min-width: 200px;
  }

  .footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .cookie-consent-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-consent p {
    text-align: left;
    flex: 1;
  }

  .cookie-consent-buttons {
    flex-direction: row;
    width: auto;
    flex-shrink: 0;
  }

  .cookie-consent-buttons .btn {
    width: auto;
  }

  .cookie-modal-buttons {
    flex-direction: row;
  }
}

/* DESKTOP STYLES */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .header-cta {
    display: block;
  }

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

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

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

  .stat-item {
    flex: 1 1 calc(25% - 32px);
  }

  .value-card {
    flex: 1 1 calc(25% - 24px);
  }

  .team-member {
    flex: 1 1 calc(25% - 24px);
  }

  .method-card {
    flex: 1 1 calc(25% - 24px);
  }

  .result-item {
    flex: 1 1 calc(25% - 24px);
  }

  .blog-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .contact-card {
    flex: 1 1 calc(25% - 24px);
  }

  .footer-col {
    flex: 1 1 calc(25% - 40px);
  }
}

/* LARGE DESKTOP */
@media (min-width: 1200px) {
  section {
    padding: 80px 20px;
  }

  .hero {
    padding: 100px 20px;
  }

  .page-hero {
    padding: 80px 20px;
  }

  .cta-banner {
    padding: 100px 20px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  header,
  footer,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .btn {
    display: none !important;
  }

  body {
    background-color: #ffffff;
  }

  * {
    box-shadow: none !important;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #F5A623;
  outline-offset: 2px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  body {
    background-color: #ffffff;
    color: #000000;
  }

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

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

/* SMOOTH SCROLL BEHAVIOR */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}