/* ============================================
   ABT CONSULTING THEME - MAIN STYLESHEET
   Version: 1.0.0
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  /* Couleurs */
  --color-primary: #2E5AA7;
  --color-secondary: #4CAF50;
  --color-accent: #5B9BD5;
  --color-dark: #1A1A1A;
  --color-text: #4A4A4A;
  --color-text-light: #757575;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F7FA;

  /* Typographie */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Espacements */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --spacing-2xl: 80px;
  --spacing-3xl: 120px;

  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(46, 90, 167, 0.12);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50%;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-secondary);
}

/* Buttons */
.cta-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.cta-button:hover,
.submit-button:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button.primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.cta-button.secondary {
  background: transparent;
  color: var(--color-primary);
}

.cta-button.secondary:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

/* Lists */
ul,
ol {
  margin-bottom: var(--spacing-md);
}

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

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ============================================
   HEADER - EXACT STYLES FROM AppHeader.vue
   ============================================ */

.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

.app-header.scrolled {
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(46, 90, 167, 0.1);
}

.header-container,
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Logo */
.logo-link,
.nav-brand,
.nav-brand a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.logo-link:hover,
.nav-brand a:hover {
  transform: translateY(-2px);
}

.logo,
.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.scrolled .logo {
  height: 42px;
}

.company-name,
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #2E5AA7;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.brand-name a {
  color: #2E5AA7;
}

/* Desktop Navigation */
.desktop-nav,
.nav-menu {
  display: none;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: flex-end;
}

.nav-link,
.nav-links a {
  position: relative;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #4A4A4A;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link::after,
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2E5AA7 0%, #4CAF50 100%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-links a:hover {
  color: #2E5AA7;
}

.nav-link:hover::after,
.nav-link.router-link-active::after,
.nav-links a:hover::after,
.nav-links .current-menu-item a::after {
  width: 100%;
}

.nav-link.router-link-active,
.nav-links .current-menu-item a {
  color: #2E5AA7;
}

.nav-links,
.mobile-nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li,
.mobile-nav-links li {
  list-style: none;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2E5AA7;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(46, 90, 167, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background: #4CAF50;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.35);
}

.cta-button:active {
  transform: translateY(0);
}

.desktop-cta {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger .line {
  width: 100%;
  height: 2px;
  background: #2E5AA7;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation - EXACT STYLES FROM AppHeader.vue */
.mobile-nav-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.mobile-nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #4A4A4A;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.router-link-active,
.mobile-nav-link.current-menu-item {
  background: rgba(46, 90, 167, 0.08);
  color: #2E5AA7;
}

.mobile-cta {
  margin-top: 16px;
  width: 100%;
}

/* Mobile Menu Transitions */
.mobile-nav-overlay {
  transition: opacity 0.3s ease;
}

.mobile-nav {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.mobile-nav-overlay:not(.active) .mobile-nav {
  transform: translateY(-20px);
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .header-container,
  .nav-container {
    padding: 0 40px;
  }

  .company-name,
  .brand-name {
    display: block;
  }

  .mobile-menu-toggle,
  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 60px 40px 120px;
  }

  .scroll-indicator {
    bottom: 40px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .desktop-nav,
  .nav-menu {
    display: flex;
  }

  .desktop-cta,
  .cta-button {
    display: inline-flex;
  }

  .mobile-menu-toggle,
  .hamburger {
    display: none !important;
  }

  .header-container,
  .nav-container {
    padding: 0 64px;
  }

  .hero-content {
    padding: 80px 64px 140px;
  }

  .scroll-indicator {
    bottom: 50px;
  }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .header-container,
  .nav-container {
    padding: 0 80px;
  }

  .desktop-nav {
    gap: 48px;
  }
}

/* Focus Styles for Accessibility */
.nav-link:focus-visible,
.cta-button:focus-visible,
.mobile-menu-toggle:focus-visible,
.mobile-nav-link:focus-visible,
.nav-links a:focus-visible,
.mobile-nav-links a:focus-visible {
  outline: 2px solid #4CAF50;
  outline-offset: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2E5AA7;
}

/* Geometric Pattern */
.geometric-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  overflow: hidden;
}

.triangle {
  position: absolute;
  border-style: solid;
}

.triangle-1 {
  top: 10%;
  right: 5%;
  width: 0;
  height: 0;
  border-width: 0 100px 173px 100px;
  border-color: transparent transparent #FFFFFF transparent;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.triangle-2 {
  bottom: 15%;
  left: 8%;
  width: 0;
  height: 0;
  border-width: 130px 75px 0 75px;
  border-color: #FFFFFF transparent transparent transparent;
  opacity: 0.4;
  animation: float 10s ease-in-out infinite reverse;
}

.triangle-3 {
  top: 40%;
  right: 15%;
  width: 0;
  height: 0;
  border-width: 0 60px 104px 60px;
  border-color: transparent transparent #FFFFFF transparent;
  opacity: 0.3;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 24px 100px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.highlight {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: #4CAF50;
  border-radius: 2px;
}

.hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: #FFFFFF;
  color: #2E5AA7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: #4CAF50;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
}

.btn-primary .btn-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  animation: fadeIn 1s ease-out 1s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mouse,
.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.wheel,
.scroll-wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.scroll-indicator span,
.scroll-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Tablet */
@media (min-width: 768px) {
  .hero-content {
    padding: 80px 40px 100px;
  }

  .hero-title {
    font-size: 52px;
  }

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

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .stat-card {
    padding: 32px 24px;
  }

  .stat-number {
    font-size: 44px;
  }

  .stat-label {
    font-size: 13px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-content {
    padding: 100px 64px 120px;
  }

  .hero-title {
    font-size: 58px;
  }

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

  .hero-cta {
    gap: 20px;
  }

  .btn {
    padding: 18px 40px;
    font-size: 17px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 14px;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .hero-content {
    padding: 120px 80px 140px;
  }

  .hero-container {
    gap: 80px;
  }
}

/* Focus Styles */
.btn:focus-visible,
.scroll-indicator:focus-visible {
  outline: 2px solid #4CAF50;
  outline-offset: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .hero-text,
  .hero-stats,
  .scroll-indicator,
  .triangle-1,
  .triangle-2,
  .triangle-3 {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: var(--spacing-3xl) var(--spacing-md);
  background: var(--color-bg);
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: 42px;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.service-card {
  background: #FFFFFF;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(46, 90, 167, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: #2E5AA7;
}

.service-title {
  font-size: 24px;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.service-description {
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.service-features li {
  padding: var(--spacing-xs) 0;
  color: var(--color-text);
  position: relative;
  padding-left: var(--spacing-md);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition-base);
}

.service-link:hover {
  gap: var(--spacing-sm);
}

.service-link .arrow-icon {
  width: 20px;
  height: 20px;
}

.services-cta {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}

.services-cta p {
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: #FFFFFF;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 90, 167, 0.03) 0%, transparent 100%);
  transform: skewX(-15deg);
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(76, 175, 80, 0.03) 100%);
  transform: skewX(-15deg);
  pointer-events: none;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: var(--animation-delay);
  animation-fill-mode: backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon */
.stat-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(46, 90, 167, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrapper {
  background: rgba(46, 90, 167, 0.12);
  transform: scale(1.1) rotate(5deg);
}

.stat-icon {
  width: 36px;
  height: 36px;
  color: #2E5AA7;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-icon {
  color: #4CAF50;
}

/* Counter */
.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: #1A1A1A;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.counter {
  display: inline-block;
  min-width: 100px;
  text-align: right;
}

.suffix {
  color: #4CAF50;
  font-size: 48px;
}

/* Label */
.stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #757575;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  max-width: 200px;
}

/* Tablet */
@media (min-width: 768px) {
  .stats-section {
    padding: 100px 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 48px;
  }

  .stat-value {
    font-size: 64px;
  }

  .suffix {
    font-size: 54px;
  }

  .stat-label {
    font-size: 15px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .stats-section {
    padding: 120px 64px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }

  .stat-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-value {
    font-size: 72px;
  }

  .suffix {
    font-size: 60px;
  }

  .stat-label {
    font-size: 14px;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .stats-section {
    padding: 140px 80px;
  }

  .stat-value {
    font-size: 80px;
  }

  .suffix {
    font-size: 68px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .stat-item {
    animation: none;
  }

  .stat-icon-wrapper,
  .stat-icon {
    transition: none;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

/* Background */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2E5AA7;
}

/* Geometric Shapes */
.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.shape {
  position: absolute;
  background: #FFFFFF;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  animation: float 10s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -60px;
  animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
}

/* Content */
.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

/* Title */
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* Subtitle */
.cta-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  justify-content: center !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.btn-primary {
  background: #FFFFFF;
  color: #2E5AA7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #4CAF50;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary .btn-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.trust-icon {
  width: 24px;
  height: 24px;
  color: #4CAF50;
  flex-shrink: 0;
}

/* Tablet */
@media (min-width: 768px) {
  .cta-section {
    padding: 120px 40px;
  }

  .cta-title {
    font-size: 44px;
  }

  .cta-subtitle {
    font-size: 20px;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 20px;
  }

  .btn {
    width: auto;
  }

  .trust-indicators {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .cta-section {
    padding: 140px 64px;
  }

  .cta-title {
    font-size: 48px;
  }

  .cta-subtitle {
    font-size: 21px;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .cta-section {
    padding: 160px 80px;
  }

  .cta-title {
    font-size: 52px;
  }
}

/* Focus Styles */
.btn:focus-visible {
  outline: 2px solid #4CAF50;
  outline-offset: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .cta-content,
  .shape-1,
  .shape-2,
  .shape-3 {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

/* ============================================
   PAGE HEADER
   ============================================ */

/* Page Header */
.page-header {
  padding: 140px 24px 60px;
  background: var(--color-primary);
  text-align: center;
}

.page-header-container {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

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

.page-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: white;
  margin: 0 0 20px 0;
}

.page-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: white;
  margin: 0;
}

/* Tablet */
@media (min-width: 768px) {
  .page-header {
    padding: 160px 40px 80px;
  }

  .page-title {
    font-size: 52px;
  }

  .page-subtitle {
    font-size: 20px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .page-header {
    padding: 180px 64px 100px;
  }

  .page-title {
    font-size: 56px;
  }

  .page-subtitle {
    font-size: 21px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .page-header-container {
    animation: none;
  }
}

/* ============================================
   SERVICE DETAIL
   ============================================ */

.service-detail {
  padding: var(--spacing-3xl) var(--spacing-md);
}

.service-detail:nth-child(even) {
  background: var(--color-bg-alt);
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: var(--radius-md);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  color: #FFFFFF;
}

.service-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.content-card {
  background: #FFFFFF;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 24px;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.features-list,
.benefits-list {
  list-style: none;
  padding: 0;
}

.feature-item,
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
  color: var(--color-text);
}

.feature-item .check-icon,
.benefit-item .arrow-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.company-story {
  padding: var(--spacing-3xl) var(--spacing-md);
}

.story-container {
  max-width: 900px;
  margin: 0 auto;
}

.story-content {
  font-size: 18px;
  line-height: 1.8;
}

.mission-vision {
  padding: var(--spacing-3xl) var(--spacing-md);
  background: var(--color-bg-alt);
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-lg);
}

.mv-card {
  background: #FFFFFF;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.mv-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  color: var(--color-primary);
}

.values-section {
  padding: var(--spacing-3xl) var(--spacing-md);
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.value-card {
  background: #FFFFFF;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-md);
  color: var(--color-primary);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-content {
  padding: var(--spacing-3xl) var(--spacing-md);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
}

.contact-form-wrapper {
  background: #FFFFFF;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 28px;
  margin-bottom: var(--spacing-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-group label {
  font-weight: 600;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.info-card {
  background: #FFFFFF;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-xs);
}

.info-card p {
  font-size: 14px;
  color: var(--color-text);
  margin: 0;
}

.info-card a {
  color: var(--color-primary);
}

.closed {
  color: var(--color-text-light);
  font-size: 14px;
}

.legal-card {
  background: var(--color-bg-alt);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-list li {
  padding: var(--spacing-xs) 0;
  font-size: 14px;
  color: var(--color-text);
}

.map-section {
  padding: var(--spacing-3xl) var(--spacing-md);
  background: var(--color-bg-alt);
}

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

.map-title {
  font-size: 32px;
  margin-bottom: var(--spacing-sm);
}

.map-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.app-footer {
  background: var(--color-dark);
  color: #FFFFFF;
}

.footer-content {
  padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-xl);
}

.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.footer-column h3 {
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
}

.footer-brand {
  margin-bottom: var(--spacing-md);
}

.footer-logo {
  height: 40px;
  margin-bottom: var(--spacing-sm);
}

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

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition-base);
}

.social-links a:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

.social-icon {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
}

.footer-title {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: var(--spacing-md);
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.7);
}

.contact-info a:hover {
  color: var(--color-secondary);
}

.realization-card-link {
  flex: 0 0 380px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.realization-card-link:hover .realization-card {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(46, 90, 167, 0.15);
}

.realization-card-link:focus {
  outline: 2px solid #4CAF50;
  outline-offset: 4px;
  border-radius: 12px;
}

.realization-card-link:hover .realization-card-image img {
  transform: scale(1.05);
}


/* Footer Bottom */
.footer-bottom {
  padding: 24px 24px;
}

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

.legal-info,
.copyright {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #757575;
}

.legal-info p,
.copyright p {
  margin: 0;
}

.company-info {
  line-height: 1.6;
}

.company-info strong {
  color: #FFFFFF;
}

/* Tablet */
@media (min-width: 768px) {
  .footer-main {
    padding: 100px 40px 60px;
  }

  .footer-main .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 48px;
  }

  .footer-bottom {
    padding: 32px 40px;
  }

  .realization-card-link {
    flex: 0 0 300px;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .footer-main {
    padding: 120px 64px 80px;
  }

  .footer-main .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
  }

  .realization-card-link {
    flex: 0 0 340px;
  }
	
  .footer-bottom {
    padding: 32px 64px;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .footer-main {
    padding: 140px 80px 100px;
  }

  .realization-card-link {
    flex: 0 0 380px;
  }
	
  .footer-bottom {
    padding: 32px 80px;
  }
}

/* Focus Styles */
.footer-link:focus-visible,
.social-link:focus-visible,
.phone-link:focus-visible,
.email-link:focus-visible {
  outline: 2px solid #4CAF50;
  outline-offset: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .footer-column {
    animation: none;
  }

  .footer-link,
  .social-link,
  .phone-link,
  .email-link {
    transition: none;
  }
}

.footer-legal {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

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

.legal-info {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.legal-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .app-header {
    height: 60px;
  }

  .hamburger {
    display: flex;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-title {
    font-size: 32px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-title {
    font-size: 28px;
  }

  .services-grid,
  .stats-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .legal-info {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
}
