
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-alt: #0f172a;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #d97706;
  --color-primary-hover: #b45309;
  --color-primary-light: #fbbf24;
  --color-secondary: #059669;
  --color-secondary-hover: #047857;
  --color-accent-red: #dc2626;
  --color-accent-blue: #2563eb;
  
  
  --font-primary: 'Sora', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-light);
  background: var(--color-bg-secondary);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-sm {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 6vw, 3rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

h5 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

small {
  font-size: 0.875rem;
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.hero {
  background: var(--color-bg-primary);
  color: var(--color-text-dark);
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--color-primary-light);
}

.hero p {
  color: var(--color-text-dark-secondary);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: var(--space-3xl) var(--space-lg);
}

.section-light h2 {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.section-light p {
  color: var(--color-text-light-secondary);
}

.section-gray {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light);
  padding: var(--space-3xl) var(--space-lg);
}

.section-gray h2 {
  color: var(--color-text-light);
}

.section-gray p {
  color: var(--color-text-light-secondary);
}

.section-dark {
  background: var(--color-bg-dark-alt);
  color: var(--color-text-dark);
  padding: var(--space-3xl) var(--space-lg);
}

.section-dark h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
}

.section-dark p {
  color: var(--color-text-dark-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  gap: var(--space-sm);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--color-secondary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border: 2px solid var(--color-text-dark);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.1rem;
}

.card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card h3 {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.card p {
  color: var(--color-text-light-secondary);
}

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark);
}

.card-dark h3 {
  color: var(--color-text-dark);
}

.card-dark p {
  color: var(--color-text-dark-secondary);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.flex-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-secondary);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark);
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-lg {
  width: 48px;
  height: 48px;
}

.icon-xl {
  width: 64px;
  height: 64px;
}

.feature-item {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-item-light {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item-light:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.feature-item-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item-dark:hover {
  border-color: var(--color-primary-light);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.2);
}

.feature-item h4 {
  color: inherit;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--space-xl) 0;
}

.divider-dark {
  background: rgba(255, 255, 255, 0.1);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--color-text-light);
  background: #ffffff;
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero {
    padding: var(--space-3xl) var(--space-md);
  }

  .section-light,
  .section-gray,
  .section-dark {
    padding: var(--space-2xl) var(--space-md);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .btn {
    width: 100%;
  }

  .flex-col {
    gap: var(--space-md);
  }
}

@media print {
  body {
    background: white;
    color: #000;
  }

  .no-print {
    display: none;
  }
}
.header-contractor-forge {
  background: var(--color-bg-primary);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  position: static;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-contractor-forge-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
}

.header-contractor-forge-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.header-contractor-forge-brand:hover {
  opacity: 0.85;
}

.header-contractor-forge-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.header-contractor-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
}

.header-contractor-forge-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: center;
}

.header-contractor-forge-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-contractor-forge-nav-link:hover {
  color: var(--color-primary);
}

.header-contractor-forge-cta-button {
  display: none;
  padding: clamp(0.625rem, 1vw, 0.75rem) clamp(1.25rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-contractor-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.header-contractor-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.header-contractor-forge-mobile-toggle:hover {
  opacity: 0.8;
}

.header-contractor-forge-hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-contractor-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  padding-top: clamp(4rem, 10vw, 5rem);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 99;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header-contractor-forge-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-contractor-forge-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: clamp(4rem, 10vw, 5rem);
  align-items: center;
}

.header-contractor-forge-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.header-contractor-forge-mobile-close:hover {
  opacity: 0.8;
}

.header-contractor-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 0 clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.header-contractor-forge-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}

.header-contractor-forge-mobile-link:hover {
  color: var(--color-primary);
}

.header-contractor-forge-mobile-cta {
  display: block;
  width: calc(100% - clamp(2rem, 6vw, 4rem));
  margin: clamp(1.5rem, 3vw, 2rem) auto;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.header-contractor-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

@media (min-width: 768px) {
  .header-contractor-forge-desktop-nav {
    display: flex;
  }

  .header-contractor-forge-cta-button {
    display: block;
  }

  .header-contractor-forge-mobile-toggle {
    display: none;
  }

  .header-contractor-forge-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-contractor-forge-nav-link {
    font-size: 0.95rem;
  }

  .header-contractor-forge-desktop-nav {
    gap: 2.5rem;
  }
}

    .accounting-hub {
  width: 100%;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2332 100%);
  color: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-index::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero-title-index {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.8;
  max-width: 700px;
}

.hero-cta-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
  border: none;
}

.btn-primary {
  background: #d97706;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  background: #b45309;
  box-shadow: 0 8px 12px rgba(217, 119, 6, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fbbf24;
}

.btn-secondary {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.3);
}

.btn-secondary:hover {
  background: #047857;
  box-shadow: 0 8px 12px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.btn-lg {
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fbbf24;
  font-family: 'Poppins', sans-serif;
}

.stat-label-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  font-weight: 500;
}

.about-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.about-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.about-text-index {
  flex: 1 1 45%;
  min-width: 280px;
}

.about-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.about-paragraph-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-features-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.feature-check-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #1e293b;
}

.feature-check-index i {
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-image-index {
  flex: 1 1 45%;
  min-width: 280px;
}

.about-img-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.features-header-index {
  text-align: center;
}

.features-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.features-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-card-index:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #d97706;
}

.feature-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 8px;
  font-size: 1.5rem;
  color: #d97706;
}

.feature-card-title-index {
  color: #0f172a;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin: 0;
}

.feature-card-text-index {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.process-section-index {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.process-header-index {
  text-align: center;
}

.process-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.process-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.process-step-index {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fbbf24;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-index {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
}

.step-text-index {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.benefits-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.benefits-image-index {
  flex: 1 1 45%;
  min-width: 280px;
}

.benefits-img-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefits-text-index {
  flex: 1 1 45%;
  min-width: 280px;
}

.benefits-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.benefits-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-item-index {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefit-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 8px;
  font-size: 1.5rem;
  color: #059669;
  flex-shrink: 0;
}

.benefit-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-item-title-index {
  color: #0f172a;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin: 0;
}

.benefit-item-text-index {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.blog-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.blog-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.blog-header-index {
  text-align: center;
}

.blog-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.blog-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.blog-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.blog-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.blog-card-index:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-content-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.blog-card-title-index {
  color: #0f172a;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.blog-card-text-index {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.blog-card-link-index {
  color: #d97706;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-card-link-index:hover {
  color: #b45309;
  text-decoration: underline;
}

.blog-cta-index {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.testimonials-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.testimonials-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.testimonials-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-text-index {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author-index strong {
  color: #ffffff;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.testimonial-author-index span {
  color: #94a3b8;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.cta-final-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2332 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  text-align: center;
}

.cta-final-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
}

.cta-final-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0;
  font-weight: 700;
  max-width: 700px;
}

.cta-final-text-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1e293b;
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner-index.hidden {
  display: none;
}

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  margin: 0;
  max-width: 600px;
  text-align: center;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.65rem) clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept-index {
  background: #d97706;
  color: #000000;
}

.cookie-btn-accept-index:hover {
  background: #b45309;
}

.cookie-btn-decline-index {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline-index:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

@media (max-width: 768px) {
  .about-content-index,
  .benefits-content-index {
    flex-direction: column;
  }

  .about-text-index,
  .about-image-index,
  .benefits-image-index,
  .benefits-text-index {
    flex: 1 1 100%;
  }

  .hero-cta-index {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .testimonials-grid-index {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .hero-stats-index {
    gap: 1.5rem;
  }

  .stat-number-index {
    font-size: 1.5rem;
  }

  .stat-label-index {
    font-size: 0.75rem;
  }

  .features-grid-index,
  .blog-cards-index,
  .process-steps-index {
    gap: 1rem;
  }

  .feature-card-index,
  .blog-card-index,
  .process-step-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cookie-banner-index {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-buttons-index {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1;
    min-width: 120px;
  }
}

    .footer {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-about {
  max-width: 500px;
}

.footer-about h3,
.footer-section h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.footer-about p {
  font-family: var(--font-primary);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-section {
  display: block;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.footer-link {
  font-family: var(--font-primary);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: color 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.footer-link:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.footer-contact {
  display: block;
}

.footer-contact p {
  font-family: var(--font-primary);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.8;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-copyright {
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright p {
  font-family: var(--font-primary);
  color: var(--color-text-dark-muted);
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
    justify-content: space-between;
  }

  .footer-about {
    flex: 0 0 100%;
    max-width: 100%;
  }

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

  .footer-copyright {
    flex: 0 0 100%;
  }

  .footer-nav,
  .footer-legal {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .footer-content {
 
    justify-content: flex-start;
  }

  .footer-about {
    flex: 0 0 auto;
    margin-right: clamp(2rem, 4vw, 3rem);
  }

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

  .footer-copyright {
    flex: 0 0 100%;
  }
}
    

.category-page-construction-accounting {
  background: #ffffff;
  overflow: hidden;
}

.hero-section-construction-accounting {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-construction-accounting::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-construction-accounting::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.hero-content-construction-accounting {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.hero-text-construction-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  max-width: 900px;
}

.hero-title-construction-accounting {
  font-size: clamp(2rem, 7vw + 0.5rem, 3.75rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.accent-construction-accounting {
  color: #fbbf24;
}

.hero-subtitle-construction-accounting {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.hero-description-construction-accounting {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  margin: 0;
  line-height: 1.8;
}

.hero-stats-construction-accounting {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(1rem, 3vw, 2rem);
}

.stat-box-construction-accounting {
  flex: 1 1 250px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-number-construction-accounting {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fbbf24;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.stat-label-construction-accounting {
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

.posts-section-construction-accounting {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-construction-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.posts-header-construction-accounting {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.posts-title-construction-accounting {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.posts-subtitle-construction-accounting {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.posts-grid-construction-accounting {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.card-construction-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 420px;
}

.card-construction-accounting:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
  border-color: #d97706;
}

.card-image-construction-accounting {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
}

.card-construction-accounting img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-title-construction-accounting {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.card-description-construction-accounting {
  font-size: clamp(0.9rem, 1.2vw + 0.3rem, 1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

.card-meta-construction-accounting {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.card-time-construction-accounting,
.card-level-construction-accounting,
.card-date-construction-accounting {
  font-size: clamp(0.8rem, 1vw + 0.2rem, 0.9rem);
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-time-construction-accounting i,
.card-level-construction-accounting i,
.card-date-construction-accounting i {
  color: #d97706;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-link-construction-accounting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(1.2rem, 2vw, 1.5rem);
  background: #d97706;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}

.card-link-construction-accounting:hover {
  background: #b45309;
  transform: translateX(2px);
}

.insights-section-construction-accounting {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-construction-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.insights-header-construction-accounting {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.insights-title-construction-accounting {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.insights-subtitle-construction-accounting {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.insights-list-construction-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.insight-item-construction-accounting {
  background: #ffffff;
  border-left: 4px solid #d97706;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.insight-item-construction-accounting:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.insight-heading-construction-accounting {
  font-size: clamp(1rem, 1.8vw + 0.3rem, 1.3rem);
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.insight-heading-construction-accounting i {
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.insight-text-construction-accounting {
  font-size: clamp(0.9rem, 1.2vw + 0.3rem, 1.05rem);
  color: #475569;
  margin: 0;
  line-height: 1.8;
}

.checklist-section-construction-accounting {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.checklist-content-construction-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.checklist-header-construction-accounting {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.checklist-title-construction-accounting {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.checklist-subtitle-construction-accounting {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.checklist-items-construction-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.check-item-construction-accounting {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.check-item-construction-accounting:hover {
  background: rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.5);
  transform: translateX(4px);
}

.check-icon-construction-accounting {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fbbf24;
  flex-shrink: 0;
  width: clamp(2rem, 4vw, 2.5rem);
  height: clamp(2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

.check-text-construction-accounting {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-heading-construction-accounting {
  font-size: clamp(1rem, 1.8vw + 0.3rem, 1.3rem);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.check-description-construction-accounting {
  font-size: clamp(0.9rem, 1.2vw + 0.3rem, 1.05rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-content-construction-accounting {
    gap: 1.5rem;
  }

  .hero-stats-construction-accounting {
    gap: 1rem;
    flex-direction: column;
  }

  .stat-box-construction-accounting {
    flex: 1 1 100%;
  }

  .posts-grid-construction-accounting {
    gap: 1.25rem;
  }

  .card-construction-accounting {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-list-construction-accounting {
    gap: 1.25rem;
  }

  .insight-item-construction-accounting {
    padding: 1rem;
  }

  .checklist-items-construction-accounting {
    gap: 1.25rem;
  }

  .check-item-construction-accounting {
    gap: 1rem;
    padding: 1rem;
    flex-direction: column;
  }

  .check-icon-construction-accounting {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-section-construction-accounting {
    padding: 2.5rem 0;
  }

  .hero-title-construction-accounting {
    font-size: 1.5rem;
  }

  .hero-subtitle-construction-accounting {
    font-size: 1rem;
  }

  .hero-description-construction-accounting {
    font-size: 0.9rem;
  }

  .posts-section-construction-accounting {
    padding: 2.5rem 0;
  }

  .posts-title-construction-accounting {
    font-size: 1.4rem;
  }

  .card-link-construction-accounting {
    width: 100%;
  }

  .insights-section-construction-accounting {
    padding: 2.5rem 0;
  }

  .insights-title-construction-accounting {
    font-size: 1.4rem;
  }

  .checklist-section-construction-accounting {
    padding: 2.5rem 0;
  }

  .checklist-title-construction-accounting {
    font-size: 1.4rem;
  }

  .check-item-construction-accounting {
    gap: 0.75rem;
  }

  .check-heading-construction-accounting {
    font-size: 1rem;
  }
}

.main-ingresos-proyectos-construccion {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  overflow: hidden;
}

.hero-section-ingresos-proyectos-construccion {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-ingresos-proyectos-construccion::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-ingresos-proyectos-construccion::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-ingresos-proyectos-construccion .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.breadcrumbs-ingresos-proyectos-construccion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.breadcrumbs-ingresos-proyectos-construccion a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-ingresos-proyectos-construccion a:hover {
  color: #ffffff;
}

.breadcrumbs-ingresos-proyectos-construccion span {
  color: #64748b;
}

.hero-meta-ingresos-proyectos-construccion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-ingresos-proyectos-construccion {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(217, 119, 6, 0.2);
  color: #fbbf24;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-divider-ingresos-proyectos-construccion {
  color: #475569;
}

.meta-time-ingresos-proyectos-construccion,
.meta-date-ingresos-proyectos-construccion {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.hero-content-ingresos-proyectos-construccion {
  max-width: 700px;
}

.hero-title-ingresos-proyectos-construccion {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accent-highlight-ingresos-proyectos-construccion {
  color: #fbbf24;
}

.hero-subtitle-ingresos-proyectos-construccion {
  color: #cbd5e1;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description-ingresos-proyectos-construccion {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-image-ingresos-proyectos-construccion {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero-img-ingresos-proyectos-construccion {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-section-ingresos-proyectos-construccion {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-title-ingresos-proyectos-construccion {
    font-size: 1.75rem;
  }

  .hero-subtitle-ingresos-proyectos-construccion {
    font-size: 1.1rem;
  }
}

.intro-section-ingresos-proyectos-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-wrapper-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.intro-paragraph-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-list-ingresos-proyectos-construccion {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.intro-list-item-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.intro-list-item-ingresos-proyectos-construccion::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d97706;
  font-weight: 700;
}

.intro-image-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-ingresos-proyectos-construccion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-ingresos-proyectos-construccion {
    flex-direction: column;
  }

  .intro-text-ingresos-proyectos-construccion,
  .intro-image-ingresos-proyectos-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-title-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }
}

.framework-section-ingresos-proyectos-construccion {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.framework-content-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.framework-text-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.framework-paragraph-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.framework-steps-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-ingresos-proyectos-construccion {
  font-size: 2.5rem;
  font-weight: 800;
  color: #d97706;
  flex-shrink: 0;
  min-width: 70px;
}

.step-body-ingresos-proyectos-construccion {
  flex: 1;
}

.step-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.framework-image-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-img-ingresos-proyectos-construccion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .framework-content-ingresos-proyectos-construccion {
    flex-direction: column;
  }

  .framework-text-ingresos-proyectos-construccion,
  .framework-image-ingresos-proyectos-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-number-ingresos-proyectos-construccion {
    font-size: 2rem;
    min-width: 60px;
  }
}

.measurement-section-ingresos-proyectos-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.measurement-wrapper-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.measurement-image-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.measurement-img-ingresos-proyectos-construccion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.measurement-text-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.measurement-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.measurement-paragraph-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-ingresos-proyectos-construccion {
  background: #f8fafc;
  border-left: 4px solid #d97706;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-text-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .measurement-wrapper-ingresos-proyectos-construccion {
    flex-direction: column-reverse;
  }

  .measurement-image-ingresos-proyectos-construccion,
  .measurement-text-ingresos-proyectos-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .measurement-title-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }
}

.application-section-ingresos-proyectos-construccion {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.application-wrapper-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.application-text-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.application-paragraph-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.example-box-ingresos-proyectos-construccion {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.example-timeline-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-point-ingresos-proyectos-construccion {
  position: relative;
  padding-left: 2rem;
}

.timeline-point-ingresos-proyectos-construccion::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: #d97706;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #d97706;
}

.timeline-point-ingresos-proyectos-construccion:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 20px;
  width: 2px;
  height: calc(100% + 15px);
  background: #cbd5e1;
}

.timeline-marker-ingresos-proyectos-construccion {
  color: #d97706;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.timeline-text-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.timeline-text-ingresos-proyectos-construccion strong {
  color: #0f172a;
}

.application-image-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-img-ingresos-proyectos-construccion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .application-wrapper-ingresos-proyectos-construccion {
    flex-direction: column;
  }

  .application-text-ingresos-proyectos-construccion,
  .application-image-ingresos-proyectos-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .application-title-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }

  .example-box-ingresos-proyectos-construccion {
    padding: 1.5rem;
  }
}

.considerations-section-ingresos-proyectos-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.considerations-content-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.considerations-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: center;
}

.considerations-grid-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.consideration-card-ingresos-proyectos-construccion {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consideration-card-ingresos-proyectos-construccion:hover {
  border-color: #d97706;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.1);
  transform: translateY(-4px);
}

.card-icon-ingresos-proyectos-construccion {
  font-size: 2.5rem;
  line-height: 1;
}

.card-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.card-text-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .consideration-card-ingresos-proyectos-construccion {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .consideration-card-ingresos-proyectos-construccion {
    flex: 1 1 100%;
  }

  .considerations-title-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }
}

.systems-section-ingresos-proyectos-construccion {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.systems-wrapper-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.systems-image-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.systems-img-ingresos-proyectos-construccion {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.systems-text-ingresos-proyectos-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.systems-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.systems-paragraph-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.systems-list-ingresos-proyectos-construccion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.systems-list-item-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.systems-list-item-ingresos-proyectos-construccion::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

@media (max-width: 768px) {
  .systems-wrapper-ingresos-proyectos-construccion {
    flex-direction: column-reverse;
  }

  .systems-image-ingresos-proyectos-construccion,
  .systems-text-ingresos-proyectos-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .systems-title-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }
}

.conclusion-section-ingresos-proyectos-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.conclusion-paragraph-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.conclusion-checklist-ingresos-proyectos-construccion {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.checklist-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.checklist-items-ingresos-proyectos-construccion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-item-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.checklist-item-ingresos-proyectos-construccion::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

@media (max-width: 768px) {
  .conclusion-title-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }

  .conclusion-checklist-ingresos-proyectos-construccion {
    padding: 1.5rem;
  }
}

.disclaimer-section-ingresos-proyectos-construccion {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.disclaimer-icon-ingresos-proyectos-construccion {
  font-size: 2rem;
  flex-shrink: 0;
  color: #2563eb;
}

.disclaimer-text-ingresos-proyectos-construccion {
  flex: 1;
}

.disclaimer-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-paragraph-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-ingresos-proyectos-construccion {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .disclaimer-icon-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }
}

.related-section-ingresos-proyectos-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-content-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.related-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 0.5rem;
}

.related-subtitle-ingresos-proyectos-construccion {
  color: #64748b;
  font-size: 1.05rem;
  text-align: center;
  margin: 0;
}

.related-grid-ingresos-proyectos-construccion {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-ingresos-proyectos-construccion {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-ingresos-proyectos-construccion:hover {
  border-color: #d97706;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-ingresos-proyectos-construccion {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-ingresos-proyectos-construccion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-ingresos-proyectos-construccion:hover .related-card-image-ingresos-proyectos-construccion img {
  transform: scale(1.05);
}

.related-card-body-ingresos-proyectos-construccion {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-ingresos-proyectos-construccion {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-ingresos-proyectos-construccion {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-ingresos-proyectos-construccion {
  color: #d97706;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-ingresos-proyectos-construccion:hover {
  color: #b45309;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-ingresos-proyectos-construccion {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-ingresos-proyectos-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-title-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }

  .related-card-image-ingresos-proyectos-construccion {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero-title-ingresos-proyectos-construccion {
    font-size: 1.5rem;
  }

  .intro-title-ingresos-proyectos-construccion,
  .framework-title-ingresos-proyectos-construccion,
  .measurement-title-ingresos-proyectos-construccion,
  .application-title-ingresos-proyectos-construccion,
  .systems-title-ingresos-proyectos-construccion,
  .conclusion-title-ingresos-proyectos-construccion {
    font-size: 1.25rem;
  }

  .step-number-ingresos-proyectos-construccion {
    font-size: 1.5rem;
    min-width: 50px;
  }
}

.main-aspectos-fiscales-construccion {
  width: 100%;
  overflow: hidden;
}

.hero-section-aspectos-fiscales-construccion {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-aspectos-fiscales-construccion::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-aspectos-fiscales-construccion::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-aspectos-fiscales-construccion {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.breadcrumbs-aspectos-fiscales-construccion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #cbd5e1;
}

.breadcrumbs-aspectos-fiscales-construccion a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-aspectos-fiscales-construccion a:hover {
  color: #fcd34d;
  text-decoration: underline;
}

.breadcrumbs-aspectos-fiscales-construccion span {
  color: #64748b;
}

.hero-meta-aspectos-fiscales-construccion {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.meta-reading-time-aspectos-fiscales-construccion,
.meta-level-aspectos-fiscales-construccion,
.meta-date-aspectos-fiscales-construccion {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  font-weight: 500;
  color: #fbbf24;
}

.hero-title-aspectos-fiscales-construccion {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #ffffff;
  letter-spacing: -0.02em;
}

.accent-aspectos-fiscales-construccion {
  color: #fbbf24;
}

.hero-subtitle-aspectos-fiscales-construccion {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 750px;
}

.hero-image-container-aspectos-fiscales-construccion {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-height: 500px;
  aspect-ratio: 16 / 9;
}

.hero-image-aspectos-fiscales-construccion {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-section-aspectos-fiscales-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-wrapper-aspectos-fiscales-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-aspectos-fiscales-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.01em;
}

.intro-paragraph-aspectos-fiscales-construccion {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-aspectos-fiscales-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-aspectos-fiscales-construccion {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.retention-section-aspectos-fiscales-construccion {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.retention-wrapper-aspectos-fiscales-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.retention-text-aspectos-fiscales-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.retention-title-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.retention-paragraph-aspectos-fiscales-construccion {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.retention-list-aspectos-fiscales-construccion {
  list-style: none;
  padding: 0;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.list-item-aspectos-fiscales-construccion {
  padding: 0.75rem 0 0.75rem 2rem;
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.6;
  position: relative;
}

.list-item-aspectos-fiscales-construccion::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d97706;
  font-weight: bold;
}

.retention-image-aspectos-fiscales-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.retention-img-aspectos-fiscales-construccion {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.iva-section-aspectos-fiscales-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.iva-wrapper-aspectos-fiscales-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.iva-image-aspectos-fiscales-construccion {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.iva-img-aspectos-fiscales-construccion {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.iva-text-aspectos-fiscales-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.iva-title-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.iva-paragraph-aspectos-fiscales-construccion {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.iva-rates-aspectos-fiscales-construccion {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.rate-card-aspectos-fiscales-construccion {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.rate-title-aspectos-fiscales-construccion {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.rate-percentage-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #d97706;
  margin: 0.5rem 0;
}

.rate-description-aspectos-fiscales-construccion {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.documentation-section-aspectos-fiscales-construccion {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.documentation-content-aspectos-fiscales-construccion {
  max-width: 100%;
}

.documentation-title-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.documentation-intro-aspectos-fiscales-construccion {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.docs-wrapper-aspectos-fiscales-construccion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.docs-text-aspectos-fiscales-construccion {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.doc-item-aspectos-fiscales-construccion {
  padding: clamp(1rem, 1.5vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid #d97706;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.doc-item-title-aspectos-fiscales-construccion {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.doc-item-text-aspectos-fiscales-construccion {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.docs-image-aspectos-fiscales-construccion {
  flex: 1 1 50%;
  max-width: 50%;
}

.docs-img-aspectos-fiscales-construccion {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.declaration-section-aspectos-fiscales-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.declaration-content-aspectos-fiscales-construccion {
  max-width: 900px;
  margin: 0 auto;
}

.declaration-title-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.declaration-intro-aspectos-fiscales-construccion {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  text-align: center;
}

.declaration-details-aspectos-fiscales-construccion {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.detail-box-aspectos-fiscales-construccion {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.06) 0%, rgba(5, 150, 105, 0.04) 100%);
  border: 1px solid #e2e8f0;
  border-left: 4px solid #059669;
  border-radius: var(--radius-lg);
}

.detail-box-title-aspectos-fiscales-construccion {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.detail-box-text-aspectos-fiscales-construccion {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.important-quote-aspectos-fiscales-construccion {
  margin: clamp(2rem, 3vw, 3rem) 0;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 5px solid #d97706;
  background: #faf3e6;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
}

.quote-text-aspectos-fiscales-construccion {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: #1e293b;
  margin: 0;
  font-weight: 500;
}

.best-practices-section-aspectos-fiscales-construccion {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

.best-practices-section-aspectos-fiscales-construccion::before {
  content: '';
  position: absolute;
  top: -30%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.best-practices-title-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.practices-grid-aspectos-fiscales-construccion {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  justify-content: center;
  position: relative;
  z-index: 1;
}

.practice-card-aspectos-fiscales-construccion {
  flex: 1 1 300px;
  max-width: 360px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.practice-card-aspectos-fiscales-construccion:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(217, 119, 6, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.15);
}

.practice-number-aspectos-fiscales-construccion {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  opacity: 0.8;
}

.practice-title-aspectos-fiscales-construccion {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.practice-text-aspectos-fiscales-construccion {
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  flex-grow: 1;
}

.conclusion-section-aspectos-fiscales-construccion {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-aspectos-fiscales-construccion {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.conclusion-text-aspectos-fiscales-construccion {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
}

.cta-box-aspectos-fiscales-construccion {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: clamp(2rem, 3vw, 3rem);
  box-shadow: 0 15px 40px rgba(217, 119, 6, 0.2);
}

.cta-title-aspectos-fiscales-construccion {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-aspectos-fiscales-construccion {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #fef3c7;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.6;
}

.btn-cta-aspectos-fiscales-construccion {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #d97706;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.95rem, 1vw, 1rem);
}

.btn-cta-aspectos-fiscales-construccion:hover {
  background: #fef3c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-section-aspectos-fiscales-construccion {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-title-aspectos-fiscales-construccion {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.related-grid-aspectos-fiscales-construccion {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  justify-content: center;
}

.related-card-aspectos-fiscales-construccion {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.related-card-aspectos-fiscales-construccion:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
  border-color: #d97706;
}

.related-image-aspectos-fiscales-construccion {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-aspectos-fiscales-construccion {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-aspectos-fiscales-construccion {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-aspectos-fiscales-construccion {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-aspectos-fiscales-construccion {
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.related-link-aspectos-fiscales-construccion {
  display: inline-block;
  color: #d97706;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-aspectos-fiscales-construccion:hover {
  color: #b45309;
  transform: translateX(4px);
}

.disclaimer-section-aspectos-fiscales-construccion {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-box-aspectos-fiscales-construccion {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-left: 4px solid #fbbf24;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.disclaimer-title-aspectos-fiscales-construccion {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-aspectos-fiscales-construccion {
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: block;
}

@media (max-width: 768px) {
  .hero-section-aspectos-fiscales-construccion {
    padding: clamp(1.5rem, 4vw, 2rem) 0;
  }

  .hero-image-container-aspectos-fiscales-construccion {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    max-height: 350px;
  }

  .intro-wrapper-aspectos-fiscales-construccion,
  .retention-wrapper-aspectos-fiscales-construccion,
  .iva-wrapper-aspectos-fiscales-construccion,
  .docs-wrapper-aspectos-fiscales-construccion {
    flex-direction: column;
  }

  .intro-text-aspectos-fiscales-construccion,
  .intro-image-aspectos-fiscales-construccion,
  .retention-text-aspectos-fiscales-construccion,
  .retention-image-aspectos-fiscales-construccion,
  .iva-image-aspectos-fiscales-construccion,
  .iva-text-aspectos-fiscales-construccion,
  .docs-text-aspectos-fiscales-construccion,
  .docs-image-aspectos-fiscales-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .iva-wrapper-aspectos-fiscales-construccion {
    flex-direction: column;
  }

  .iva-image-aspectos-fiscales-construccion {
    order: 0;
  }

  .breadcrumbs-aspectos-fiscales-construccion {
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .meta-reading-time-aspectos-fiscales-construccion,
  .meta-level-aspectos-fiscales-construccion,
  .meta-date-aspectos-fiscales-construccion {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }

  .intro-section-aspectos-fiscales-construccion,
  .retention-section-aspectos-fiscales-construccion,
  .iva-section-aspectos-fiscales-construccion,
  .documentation-section-aspectos-fiscales-construccion,
  .declaration-section-aspectos-fiscales-construccion,
  .best-practices-section-aspectos-fiscales-construccion,
  .conclusion-section-aspectos-fiscales-construccion,
  .related-section-aspectos-fiscales-construccion,
  .disclaimer-section-aspectos-fiscales-construccion {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .practices-grid-aspectos-fiscales-construccion {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .practice-card-aspectos-fiscales-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-aspectos-fiscales-construccion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .iva-rates-aspectos-fiscales-construccion {
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }
}

@media (max-width: 480px) {
  .hero-title-aspectos-fiscales-construccion {
    font-size: 1.75rem;
  }

  .intro-title-aspectos-fiscales-construccion,
  .retention-title-aspectos-fiscales-construccion,
  .iva-title-aspectos-fiscales-construccion,
  .documentation-title-aspectos-fiscales-construccion,
  .declaration-title-aspectos-fiscales-construccion,
  .best-practices-title-aspectos-fiscales-construccion,
  .conclusion-title-aspectos-fiscales-construccion,
  .related-title-aspectos-fiscales-construccion {
    font-size: 1.4rem;
  }

  .breadcrumbs-aspectos-fiscales-construccion {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .breadcrumbs-aspectos-fiscales-construccion span {
    display: none;
  }

  .cta-box-aspectos-fiscales-construccion {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

.main-software-herramientas-contabilidad {
  width: 100%;
  background: #ffffff;
  color: #1e293b;
}

.hero-section-software-herramientas-contabilidad {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-software-herramientas-contabilidad::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-software-herramientas-contabilidad::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.hero-content-software-herramientas-contabilidad {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-software-herramientas-contabilidad {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  flex-wrap: wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breadcrumbs-software-herramientas-contabilidad a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-software-herramientas-contabilidad a:hover {
  color: #ffffff;
}

.breadcrumbs-software-herramientas-contabilidad span {
  color: #94a3b8;
}

.hero-meta-software-herramientas-contabilidad {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.meta-item-software-herramientas-contabilidad {
  color: #cbd5e1;
}

.meta-separator-software-herramientas-contabilidad {
  color: #475569;
}

.hero-title-software-herramientas-contabilidad {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accent-software-herramientas-contabilidad {
  color: #fbbf24;
}

.hero-subtitle-software-herramientas-contabilidad {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 750px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-image-wrapper-software-herramientas-contabilidad {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.hero-image-software-herramientas-contabilidad {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.intro-section-software-herramientas-contabilidad {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-software-herramientas-contabilidad {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-software-herramientas-contabilidad {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-software-herramientas-contabilidad {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-software-herramientas-contabilidad {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-software-herramientas-contabilidad {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-highlight-software-herramientas-contabilidad {
  background: #f8fafc;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid #d97706;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight-text-software-herramientas-contabilidad {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-photo-software-herramientas-contabilidad {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.categories-section-software-herramientas-contabilidad {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.categories-header-software-herramientas-contabilidad {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.categories-title-software-herramientas-contabilidad {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.categories-subtitle-software-herramientas-contabilidad {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.categories-grid-software-herramientas-contabilidad {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.category-card-software-herramientas-contabilidad {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-card-software-herramientas-contabilidad:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: #d97706;
}

.card-icon-software-herramientas-contabilidad {
  font-size: 2.5rem;
  color: #d97706;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  border-radius: 8px;
}

.card-title-software-herramientas-contabilidad {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-software-herramientas-contabilidad {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-section-software-herramientas-contabilidad {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-wrapper-software-herramientas-contabilidad {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.features-text-software-herramientas-contabilidad {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-image-software-herramientas-contabilidad {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-title-software-herramientas-contabilidad {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-paragraph-software-herramientas-contabilidad {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-list-software-herramientas-contabilidad {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list-item-software-herramientas-contabilidad {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-list-item-software-herramientas-contabilidad::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.features-image-photo-software-herramientas-contabilidad {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.comparison-section-software-herramientas-contabilidad {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.comparison-header-software-herramientas-contabilidad {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.comparison-title-software-herramientas-contabilidad {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-subtitle-software-herramientas-contabilidad {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-table-wrapper-software-herramientas-contabilidad {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.comparison-row-software-herramientas-contabilidad {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row-software-herramientas-contabilidad:last-child {
  border-bottom: none;
}

.comparison-header-row-software-herramientas-contabilidad {
  background: rgba(217, 119, 6, 0.15);
}

.comparison-cell-software-herramientas-contabilidad {
  flex: 1 1 25%;
  padding: clamp(1rem, 2vw, 1.5rem);
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comparison-header-row-software-herramientas-contabilidad .comparison-cell-software-herramientas-contabilidad {
  color: #ffffff;
  font-weight: 600;
  background: rgba(217, 119, 6, 0.2);
}

.comparison-cell-name-software-herramientas-contabilidad {
  font-weight: 600;
  color: #fbbf24;
}

.comparison-note-software-herramientas-contabilidad {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #fbbf24;
  border-radius: 8px;
}

.note-text-software-herramientas-contabilidad {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-section-software-herramientas-contabilidad {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-software-herramientas-contabilidad {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-image-software-herramientas-contabilidad {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-text-software-herramientas-contabilidad {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-software-herramientas-contabilidad {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-paragraph-software-herramientas-contabilidad {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-image-photo-software-herramientas-contabilidad {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.steps-container-software-herramientas-contabilidad {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-software-herramientas-contabilidad {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.step-number-software-herramientas-contabilidad {
  font-size: 2.5rem;
  font-weight: 800;
  color: #d97706;
  flex-shrink: 0;
  min-width: 70px;
  line-height: 1;
}

.step-content-software-herramientas-contabilidad {
  flex: 1;
}

.step-title-software-herramientas-contabilidad {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-software-herramientas-contabilidad {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-section-software-herramientas-contabilidad {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.checklist-header-software-herramientas-contabilidad {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.checklist-title-software-herramientas-contabilidad {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-subtitle-software-herramientas-contabilidad {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-content-software-herramientas-contabilidad {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  justify-content: center;
}

.checklist-left-software-herramientas-contabilidad,
.checklist-right-software-herramientas-contabilidad {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checkbox-item-software-herramientas-contabilidad {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-input-software-herramientas-contabilidad {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #d97706;
  flex-shrink: 0;
}

.checkbox-label-software-herramientas-contabilidad {
  font-size: 0.95rem;
  color: #334155;
  cursor: pointer;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-section-software-herramientas-contabilidad {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-software-herramientas-contabilidad {
  max-width: 850px;
}

.conclusion-title-software-herramientas-contabilidad {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-software-herramientas-contabilidad {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-quote-software-herramientas-contabilidad {
  margin: 2.5rem 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #fbbf24;
  border-radius: 8px;
}

.quote-text-software-herramientas-contabilidad {
  font-size: 1.05rem;
  color: #f1f5f9;
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-software-herramientas-contabilidad {
  display: block;
  font-size: 0.9rem;
  color: #94a3b8;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-section-software-herramientas-contabilidad {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-software-herramientas-contabilidad {
  max-width: 850px;
  background: #ffffff;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.disclaimer-title-software-herramientas-contabilidad {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-software-herramientas-contabilidad {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-software-herramientas-contabilidad {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-software-herramientas-contabilidad {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-software-herramientas-contabilidad {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-software-herramientas-contabilidad {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-software-herramientas-contabilidad {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-software-herramientas-contabilidad {
  flex: 1 1 300px;
  max-width: 350px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-software-herramientas-contabilidad:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image-software-herramientas-contabilidad {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.related-image-software-herramientas-contabilidad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-software-herramientas-contabilidad {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  padding: 1.5rem 1.5rem 0.75rem 1.5rem;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-software-herramientas-contabilidad {
  font-size: 0.9rem;
  color: #64748b;
  padding: 0 1.5rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-link-software-herramientas-contabilidad {
  display: inline-block;
  margin: 0 1.5rem 1.5rem 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #d97706;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.related-link-software-herramientas-contabilidad:hover {
  background: #b45309;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .intro-wrapper-software-herramientas-contabilidad,
  .features-wrapper-software-herramientas-contabilidad,
  .implementation-wrapper-software-herramientas-contabilidad {
    flex-direction: column;
  }

  .intro-text-software-herramientas-contabilidad,
  .intro-image-software-herramientas-contabilidad,
  .features-text-software-herramientas-contabilidad,
  .features-image-software-herramientas-contabilidad,
  .implementation-image-software-herramientas-contabilidad,
  .implementation-text-software-herramientas-contabilidad {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .categories-grid-software-herramientas-contabilidad {
    flex-direction: column;
    align-items: center;
  }

  .category-card-software-herramientas-contabilidad {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .comparison-cell-software-herramientas-contabilidad {
    font-size: 0.85rem;
    padding: 0.75rem;
  }

  .step-software-herramientas-contabilidad {
    gap: 1rem;
  }

  .step-number-software-herramientas-contabilidad {
    min-width: 50px;
    font-size: 2rem;
  }

  .checklist-content-software-herramientas-contabilidad {
    flex-direction: column;
    align-items: center;
  }

  .checklist-left-software-herramientas-contabilidad,
  .checklist-right-software-herramientas-contabilidad {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-grid-software-herramientas-contabilidad {
    flex-direction: column;
    align-items: center;
  }

  .related-card-software-herramientas-contabilidad {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-software-herramientas-contabilidad {
    font-size: 0.8rem;
  }

  .hero-meta-software-herramientas-contabilidad {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title-software-herramientas-contabilidad {
    font-size: 1.5rem;
  }

  .hero-subtitle-software-herramientas-contabilidad {
    font-size: 0.95rem;
  }

  .categories-title-software-herramientas-contabilidad,
  .comparison-title-software-herramientas-contabilidad,
  .checklist-title-software-herramientas-contabilidad,
  .conclusion-title-software-herramientas-contabilidad,
  .related-title-software-herramientas-contabilidad,
  .intro-title-software-herramientas-contabilidad,
  .features-title-software-herramientas-contabilidad,
  .implementation-title-software-herramientas-contabilidad {
    font-size: 1.35rem;
  }

  .card-title-software-herramientas-contabilidad {
    font-size: 1rem;
  }

  .step-title-software-herramientas-contabilidad {
    font-size: 1rem;
  }

  .related-card-title-software-herramientas-contabilidad {
    font-size: 0.95rem;
  }

  .comparison-row-software-herramientas-contabilidad {
    flex-wrap: wrap;
  }

  .comparison-cell-software-herramientas-contabilidad {
    flex: 1 1 50%;
  }
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.construction-accounting-about {
  width: 100%;
  overflow-x: hidden;
}

.hero-foundation-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-foundation-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.hero-intro-about {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.2rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 700px;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}

.stat-item-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-about {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.expertise-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.section-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light);
  margin-top: 1rem;
  line-height: 1.2;
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  max-width: 650px;
  margin: 1rem auto 0;
}

.expertise-grid-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.expertise-block-about {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.expertise-block-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.expertise-block-text-about {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.approach-section-about {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.approach-header-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-top: 1rem;
  line-height: 1.2;
}

.approach-header-subtitle-about {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 650px;
  margin: 1rem auto 0;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-about {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-about {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
}

.step-text-about {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.methodology-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.values-section-about {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.values-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.values-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.values-header-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light);
  line-height: 1.2;
}

.values-header-subtitle-about {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  max-width: 650px;
  margin: 1rem auto 0;
}

.values-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

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

.card-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
  line-height: 1;
}

.card-title-about {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-light);
}

.card-text-about {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.values-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.testimony-section-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimony-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.testimony-header-about {
  text-align: center;
}

.testimony-header-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.featured-quote-about {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-about {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  font-style: normal;
}

.disclaimer-section-about {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-top: 3px solid #d1d5db;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.2em;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-about {
    gap: 1rem;
  }

  .step-number-about {
    min-width: 60px;
  }

  .values-cards-about {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .values-cards-about {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .value-card-about {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1025px) {
  .value-card-about {
    flex: 1 1 calc(33.333% - 1.67rem);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.5px;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(217, 119, 6, 0.05);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(217, 119, 6, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card-features li {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--color-text-dark-muted);
  padding-left: var(--space-md);
  position: relative;
}

.service-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.services-images {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-images-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-image-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.services-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-cta {
  background-color: var(--color-bg-dark-alt);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-content {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-card {
    padding: var(--space-xl);
  }

  .services-images {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-images-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-content {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-card {
    padding: var(--space-2xl);
  }

  .services-images {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-images-container {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .services-image-item {
    aspect-ratio: 16/12;
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1280px) {
  .services-container,
  .services-images-container,
  .services-cta-container {
    max-width: 1200px;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  text-align: center;
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card__tag {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
  display: inline-block;
  width: fit-content;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.portfolio-card__detail {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  display: inline-block;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .portfolio-card__image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card__image {
    height: 300px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-dark-alt);
  padding: var(--space-2xl) var(--space-sm);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-cta__container {
  max-width: 700px;
  margin: 0 auto;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.portfolio-cta__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.legal-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.legal-docs .last-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  padding: 0;
  list-style: none;
}

.legal-docs ul li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.legal-docs ul li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-docs .contact-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid #e2e8f0;
}

.legal-docs .contact-section h2 {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.legal-docs .contact-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-text-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-xl);
  }

  .legal-docs .content {
    padding: var(--space-4xl) 0;
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-sm);
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  animation: slideInUp 0.8s ease-out;
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: inline-block;
}

.icon-check {
  width: 80px;
  height: 80px;
  color: var(--color-secondary);
  animation: scaleAndFade 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-primary-light);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  line-height: 1.6;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-return {
  margin-top: var(--space-lg);
}

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

@keyframes scaleAndFade {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-you-page {
    padding: var(--space-lg) var(--space-md);
  }

  .icon-check {
    width: 100px;
    height: 100px;
  }

  .thank-title {
    margin-bottom: var(--space-lg);
  }

  .thank-lead {
    margin-bottom: var(--space-xl);
  }

  .thank-description {
    margin-bottom: var(--space-lg);
  }

  .thank-next-steps {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .thank-you-page {
    padding: var(--space-2xl) var(--space-md);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .thank-content {
    margin: 0 auto;
  }

  .icon-check {
    width: 120px;
    height: 120px;
  }

  .btn {
    padding: 12px 32px;
  }
}

@media (min-width: 1024px) {
  .thank-you-page {
    padding: var(--space-3xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-2xl);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

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

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.error-visual {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
}

.crane {
  width: 120px;
  height: 120px;
  position: relative;
  animation: swingCrane 4s ease-in-out infinite;
}

.crane::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 100px;
  background-color: var(--color-primary);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-radius: var(--radius-sm);
}

.crane::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 8px;
  background-color: var(--color-primary);
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-sm);
}

@keyframes swingCrane {
  0%, 100% {
    transform: rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: rotate(15deg);
    opacity: 1;
  }
}

.error-message {
  text-align: center;
  width: 100%;
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-primary-light);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.error-suggestions h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-primary-light);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  padding-left: var(--space-lg);
  position: relative;
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: 1rem 2.5rem;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-2xl);
  }

  .error-visual {
    height: 350px;
  }

  .crane {
    width: 150px;
    height: 150px;
  }

  .crane::before {
    height: 130px;
  }

  .crane::after {
    width: 100px;
    height: 10px;
  }

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

  .suggestions-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
  }

  .suggestions-list li {
    flex: 0 1 calc(33.333% - var(--space-md));
    text-align: center;
    padding-left: 0;
    padding-top: var(--space-md);
    position: relative;
  }

  .suggestions-list li::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-visual {
    height: 400px;
  }

  .crane {
    width: 180px;
    height: 180px;
  }

  .crane::before {
    height: 150px;
  }

  .crane::after {
    width: 120px;
    height: 12px;
  }

  .btn-large {
    padding: 1.25rem 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crane {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

.contact-feedback-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.contact-feedback-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  position: relative;
}

.contact-feedback-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-feedback-hero-content {
  position: relative;
  z-index: 1;
}

.contact-feedback-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-feedback-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  max-width: 700px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .contact-feedback-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-hero {
    padding: var(--space-4xl) 0;
  }
}

.contact-feedback-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-feedback-main-content {
  width: 100%;
}

.contact-feedback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.contact-feedback-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-feedback-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-feedback-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
}

.contact-feedback-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-feedback-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-feedback-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-dark);
  display: block;
}

.contact-feedback-input,
.contact-feedback-textarea {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all 0.3s ease;
  outline: none;
}

.contact-feedback-input::placeholder,
.contact-feedback-textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-feedback-input:focus,
.contact-feedback-textarea:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.contact-feedback-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-feedback-privacy-row {
  margin-top: var(--space-sm);
}

.contact-feedback-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-dark-secondary);
  cursor: pointer;
  user-select: none;
}

.contact-feedback-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-feedback-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-feedback-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-feedback-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: var(--space-md);
}

.contact-feedback-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}

.contact-feedback-submit:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(217, 119, 6, 0.2);
}

.contact-feedback-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
}

.contact-feedback-info-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-feedback-info-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-feedback-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 119, 6, 0.2);
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-feedback-info-content {
  flex: 1;
}

.contact-feedback-info-label {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.contact-feedback-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-feedback-info-text:hover {
  color: var(--color-primary);
}

.contact-feedback-info-extra {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-feedback-info-extra-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.contact-feedback-info-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-feedback-benefit {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.contact-feedback-benefit::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-feedback-cta {
  background-color: var(--color-bg-dark-alt);
  padding: var(--space-3xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-feedback-cta-content {
  text-align: center;
}

.contact-feedback-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.contact-feedback-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-feedback-main {
    padding: var(--space-4xl) 0;
  }

  .contact-feedback-grid {
    gap: var(--space-4xl);
    align-items: stretch;
  }

  .contact-feedback-form-wrapper {
    flex: 1 1 45%;
    max-width: 550px;
  }

  .contact-feedback-info-wrapper {
    flex: 1 1 45%;
    max-width: 550px;
  }

  .contact-feedback-cta {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  .contact-feedback-main {
    padding: var(--space-4xl) 0;
  }

  .contact-feedback-grid {
    gap: var(--space-4xl);
  }

  .contact-feedback-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-feedback-info-wrapper {
    flex: 1 1 50%;
  }

  .contact-feedback-cta {
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 767px) {
  .contact-feedback-form {
    gap: var(--space-md);
  }

  .contact-feedback-form-title,
  .contact-feedback-info-title {
    margin-bottom: var(--space-lg);
  }

  .contact-feedback-input,
  .contact-feedback-textarea {
    padding: var(--space-md);
  }

  .contact-feedback-info-group {
    gap: var(--space-md);
  }

  .contact-feedback-info-item {
    gap: var(--space-md);
  }
}

.main-presupuestos-control-costos {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  overflow: hidden;
}

.hero-section-presupuestos-control-costos {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-presupuestos-control-costos::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-presupuestos-control-costos::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-presupuestos-control-costos .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.breadcrumbs-presupuestos-control-costos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.breadcrumbs-presupuestos-control-costos a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-presupuestos-control-costos a:hover {
  color: #ffffff;
}

.breadcrumbs-presupuestos-control-costos span {
  color: #64748b;
}

.hero-content-presupuestos-control-costos {
  max-width: 900px;
}

.hero-meta-presupuestos-control-costos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-item-presupuestos-control-costos {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.meta-divider-presupuestos-control-costos {
  color: #475569;
}

.hero-title-presupuestos-control-costos {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accent-presupuestos-control-costos {
  color: #fbbf24;
}

.hero-subtitle-presupuestos-control-costos {
  color: #cbd5e1;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 500;
}

.hero-image-presupuestos-control-costos {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero-img-presupuestos-control-costos {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-section-presupuestos-control-costos {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-presupuestos-control-costos {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-presupuestos-control-costos {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.intro-paragraph-presupuestos-control-costos {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-presupuestos-control-costos {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-presupuestos-control-costos {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-section-presupuestos-control-costos {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.process-header-presupuestos-control-costos {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-presupuestos-control-costos {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-grid-presupuestos-control-costos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-presupuestos-control-costos {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step-card-presupuestos-control-costos:hover {
  border-color: #d97706;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number-presupuestos-control-costos {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #d97706;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-text-presupuestos-control-costos {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.methods-section-presupuestos-control-costos {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.methods-content-presupuestos-control-costos {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.methods-text-presupuestos-control-costos {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.methods-paragraph-presupuestos-control-costos {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.methods-list-presupuestos-control-costos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-presupuestos-control-costos {
  background: #f8fafc;
  padding: 1.5rem;
  border-left: 4px solid #d97706;
  border-radius: 8px;
}

.list-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.list-text-presupuestos-control-costos {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.methods-image-presupuestos-control-costos {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-img-presupuestos-control-costos {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tools-section-presupuestos-control-costos {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tools-header-presupuestos-control-costos {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tools-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-subtitle-presupuestos-control-costos {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tools-content-presupuestos-control-costos {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.tools-list-presupuestos-control-costos {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tool-item-presupuestos-control-costos {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.tool-item-presupuestos-control-costos:hover {
  border-color: #d97706;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tool-icon-presupuestos-control-costos {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 8px;
  font-size: 1.5rem;
  color: #d97706;
  flex-shrink: 0;
}

.tool-name-presupuestos-control-costos {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tool-description-presupuestos-control-costos {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.tools-image-presupuestos-control-costos {
  flex: 1 1 40%;
  max-width: 40%;
}

.tools-img-presupuestos-control-costos {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mistakes-section-presupuestos-control-costos {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.mistakes-content-presupuestos-control-costos {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistakes-text-presupuestos-control-costos {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mistakes-intro-presupuestos-control-costos {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mistake-box-presupuestos-control-costos {
  background: #fef3c7;
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.mistake-heading-presupuestos-control-costos {
  color: #991b1b;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mistake-text-presupuestos-control-costos {
  color: #92400e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.mistakes-image-presupuestos-control-costos {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-img-presupuestos-control-costos {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conclusion-section-presupuestos-control-costos {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-presupuestos-control-costos {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.conclusion-text-presupuestos-control-costos {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-highlight-presupuestos-control-costos {
  background: #ffffff;
  border-left: 4px solid #059669;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-presupuestos-control-costos {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.highlight-bold-presupuestos-control-costos {
  color: #0f172a;
  font-weight: 600;
}

.disclaimer-section-presupuestos-control-costos {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-presupuestos-control-costos {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.disclaimer-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-presupuestos-control-costos {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.related-section-presupuestos-control-costos {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-header-presupuestos-control-costos {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-presupuestos-control-costos {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-presupuestos-control-costos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-presupuestos-control-costos {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.related-card-presupuestos-control-costos:hover {
  border-color: #d97706;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-presupuestos-control-costos {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-presupuestos-control-costos {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-presupuestos-control-costos:hover .related-img-presupuestos-control-costos {
  transform: scale(1.05);
}

.related-card-content-presupuestos-control-costos {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-presupuestos-control-costos {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-presupuestos-control-costos {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .hero-section-presupuestos-control-costos {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-title-presupuestos-control-costos {
    font-size: 1.75rem;
  }

  .intro-content-presupuestos-control-costos,
  .methods-content-presupuestos-control-costos,
  .tools-content-presupuestos-control-costos,
  .mistakes-content-presupuestos-control-costos {
    flex-direction: column;
  }

  .intro-text-presupuestos-control-costos,
  .intro-image-presupuestos-control-costos,
  .methods-text-presupuestos-control-costos,
  .methods-image-presupuestos-control-costos,
  .tools-list-presupuestos-control-costos,
  .tools-image-presupuestos-control-costos,
  .mistakes-text-presupuestos-control-costos,
  .mistakes-image-presupuestos-control-costos {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-presupuestos-control-costos {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-presupuestos-control-costos {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-presupuestos-control-costos {
    font-size: 1.5rem;
  }

  .process-title-presupuestos-control-costos,
  .tools-title-presupuestos-control-costos,
  .related-title-presupuestos-control-costos,
  .intro-title-presupuestos-control-costos,
  .methods-title-presupuestos-control-costos,
  .mistakes-title-presupuestos-control-costos,
  .conclusion-title-presupuestos-control-costos {
    font-size: 1.35rem;
  }

  .step-number-presupuestos-control-costos {
    font-size: 2rem;
  }
}