/* =====================================================
   FONT DECLARATIONS
   ===================================================== */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Utendo-Semibold';
    src: url('../fonts/Utendo-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* =====================================================
   CSS VARIABLES & BASE STYLES
   ===================================================== */
:root {
    --header-h: 80px;
    --tablet-header-h: 75px;
    --mobile-header-h: 70px;
    --footer-h: 220px;
    --section-padding: 80px;
    --section-padding-tablet: 60px;
    --section-padding-mobile: 50px;
    --container-padding: 20px;
    --container-padding-tablet: 25px;
    --container-padding-mobile: 15px;
    --grid-gap: 40px;
    --grid-gap-tablet: 30px;
    --grid-gap-mobile: 25px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Utendo-Semibold', sans-serif;
    font-weight: 600;
}

html, body { 
    overflow-x: hidden; 
}

/* =====================================================
   MAIN CONTENT & CONTAINER
   ===================================================== */
.main-content {
    padding-top: var(--header-h);
    min-height: calc(100vh - var(--header-h) - var(--footer-h));
}

.container {
    max-width: 1080px; /* Ajustado para mantener consistencia */
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* =====================================================
   AGREGAR VARIABLES CSS MODERNAS A NOSOTROS
   ===================================================== */

/* Agregar estas variables después de las existentes en :root */
:root {
    /* Variables existentes se mantienen */
    --header-h: 80px;
    --tablet-header-h: 75px;
    --mobile-header-h: 70px;
    --footer-h: 220px;
    --section-padding: 80px;
    --section-padding-tablet: 60px;
    --section-padding-mobile: 50px;
    --container-padding: 20px;
    --container-padding-tablet: 25px;
    --container-padding-mobile: 15px;
    --grid-gap: 40px;
    --grid-gap-tablet: 30px;
    --grid-gap-mobile: 25px;
    
    /* NUEVAS VARIABLES PARA HERO MODERNO */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    --secondary: #06b6d4;
    
    /* Gradientes modernos */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    
    /* Transiciones */
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   HERO MODERNO (idéntico a nosotros/servicios/portafolio)
   ===================================================== */
.hero-page {
  padding: 120px 0 100px !important;
  text-align: center !important;
  background: linear-gradient(135deg, #e91e63 0%, #8e24aa 35%, #5e35b1 70%, #1e88e5 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  border-bottom: none !important;
}
.hero-page::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm30 0c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat !important;
  opacity: 0.6 !important;
}
.hero-page > * { position: relative !important; z-index: 1 !important; }

.page-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}
.page-description {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

/* Responsive hero */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero-page { padding: 80px 0 60px !important; }
}
@media (max-width: 768px) {
  .hero-page { padding: 60px 0 50px !important; }
}
@media (max-width: 480px) {
  .hero-page { padding: 50px 0 40px !important; }
}

/* Accesibilidad / performance */
@media (prefers-reduced-motion: reduce) {
  .hero-page::before { animation: none !important; }
  .page-title { text-shadow: none !important; }
}
.hero-page { will-change: auto !important; }
.page-title { will-change: transform !important; }


/* =====================================================
   MEJORAS DE ACCESIBILIDAD
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-page::before {
        animation: none;
    }
    
    .page-title {
        text-shadow: none;
    }
}

/* Performance optimization */
.hero-page {
    will-change: auto;
}

.page-title {
    will-change: transform;
}

/* =====================================================
   INSTRUCCIONES DE IMPLEMENTACIÓN
   ===================================================== */

/*
PASOS PARA APLICAR EN NOSOTROS:

1. AGREGAR VARIABLES CSS:
   - Buscar la sección :root existente
   - Añadir las nuevas variables después de las existentes

2. REEMPLAZAR HERO EXISTENTE:
   - Buscar las líneas 67-90 aprox del CSS de nosotros
   - Reemplazar todo el bloque .hero-page y .page-title, .page-description

3. RESULTADO FINAL:
   - Hero idéntico al de servicios y portafolio
   - Gradiente azul-púrpura moderno
   - Patrón SVG de fondo
   - Efecto gradiente en el texto
   - Tipografía responsive

CAMBIOS QUE VERÁS:
- De gradiente colorido → gradiente azul-púrpura
- De tamaño fijo → tamaño responsive
- Sin efectos → con patrón de fondo y efectos de texto
- Estructura unificada con servicios y portafolio
*/

/* =====================================================
   SECTION STYLES
   ===================================================== */
.section {
    padding: var(--section-padding) 0;
}

.section.values {
    padding-top: 10px;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-main {
    padding: 100px 0;
}

.about-main + .about-main {
    padding-top: 5px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Utendo-Semibold', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color:#000000;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 300;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 555px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image .image-placeholder.large {
    height: 400px;
}

/* =====================================================
   IMAGE PLACEHOLDER STYLES
   ===================================================== */
.image-placeholder {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #dee2e6;
    height: 200px;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background-color: #dee2e6;
    color: #495057;
}

/* =====================================================
   VALUES SECTION
   ===================================================== */
.values {
    background-color: #f8f9fa;
}

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

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-item img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
    transition: transform 0.3s ease;
}

.value-item:hover img {
    transform: scale(1.1);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 25px 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* =====================================================
   TEAM SECTION
   ===================================================== */
.team {
    padding: 100px 0;
}

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

.team-member {
    text-align: center;
    background: white;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.member-info {
    padding: 30px 25px;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.member-info .role {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-info .description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =====================================================
   PROCESS SECTION - MODIFICADO PARA UNA LÍNEA
   ===================================================== */
.process {
    background-color: #f8f9fa;
    padding: 40px 0 100px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* FORZAR 4 columnas en lugar de auto-fit */
    gap: 20px; /* Reducido de var(--grid-gap) a 20px */
}

.process-step {
    text-align: center;
    padding: 30px 15px; /* Reducido de 40px 20px a 30px 15px */
    background: white;
    border: 1px solid #eee;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.process-step:nth-child(1) { background: #f5e6d3; }
.process-step:nth-child(2) { background: #ebe0ff; }
.process-step:nth-child(3) { background: #d6edf5; }
.process-step:nth-child(4) { background: #eaf6e8; }

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2.5rem; /* Reducido de 3rem a 2.5rem */
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px; /* Reducido de 20px a 15px */
    opacity: 1;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    color: #e91e63;
}

.step-content h4 {
    font-size: 1.1rem; /* Reducido de 1.3rem a 1.1rem */
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px; /* Reducido de 15px a 10px */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.step-content p {
    color: #666;
    line-height: 1.5; /* Reducido de 1.6 a 1.5 */
    font-size: 0.9rem; /* Reducido para que quepa mejor */
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
}

.stats .section-title {
    color: white;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--grid-gap);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #e91e63;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   CONTACT CTA SECTION
   ===================================================== */
.contact-cta {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.contact-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 550px; /* Ajustado para consistencia */
    margin: 0 auto 35px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #2c2c2c;
    border: none;
    padding: 18px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   RESPONSIVE DESIGN - LARGE DESKTOP (min-width: 1400px)
   ===================================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1200px; /* Ajustado para consistencia */
        padding: 0 40px;
    }

    .page-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }

    .page-description {
        font-size: 1rem;
        max-width: 650px; /* Ajustado para consistencia */
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 70px;
    }

    .about-content {
        gap: 100px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1.05rem;
        color:#000000;
        font-weight: 300;
    }

    .about-img {
        max-width: 600px;
        height: 420px;
    }

    .values-grid,
    .team-grid {
        gap: 50px;
    }

    .process-steps {
        gap: 30px; /* Aumentado ligeramente para large desktop */
    }

    .value-item,
    .team-member {
        padding: 50px 35px;
    }

    .process-step {
        padding: 40px 20px; /* Más espacio en large desktop */
    }

    .value-item img {
        width: 150px;
        height: 150px;
    }

    .value-item h3 {
        font-size: 1.6rem;
    }

    .step-content h4 {
        font-size: 1.3rem; /* Recuperar tamaño original en large desktop */
    }

    .step-number {
        font-size: 3rem; /* Recuperar tamaño original en large desktop */
    }

    .stats-grid {
        gap: 60px;
    }

    .stat-number {
        font-size: 4.5rem;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .contact-cta p {
        font-size: 1.2rem;
        max-width: 650px; /* Ajustado para consistencia */
    }
}

/* =====================================================
   RESPONSIVE DESIGN - TABLETS (769px - 1023px)
   ===================================================== */
@media (min-width: 769px) and (max-width: 1023px) {
    :root {
        --header-h: var(--tablet-header-h);
        --section-padding: var(--section-padding-tablet);
        --container-padding: var(--container-padding-tablet);
        --grid-gap: var(--grid-gap-tablet);
    }

    .main-content {
        padding-top: var(--tablet-header-h);
    }

    .hero-page {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2.8rem;
        letter-spacing: -0.8px;
    }

    .page-description {
        font-size: 1rem;
        max-width: 450px; /* Ajustado para consistencia */
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 50px;
    }

    .about-main {
        padding: 80px 0;
    }

    .about-content {
        gap: 60px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
        color:#000000;
        font-weight: 300;
    }

    .about-img {
        max-width: 450px;
        height: 320px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Process mantiene 4 columnas en tablets */
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px; /* Reducido para tablets */
    }

    .value-item,
    .team-member {
        padding: 35px 25px;
    }

    .process-step {
        padding: 25px 12px; /* Más compacto en tablets */
    }

    .value-item img {
        width: 110px;
        height: 110px;
    }

    .value-item h3 {
        font-size: 1.3rem;
    }

    .step-number {
        font-size: 2rem; /* Más pequeño en tablets */
        margin-bottom: 10px;
    }

    .step-content h4 {
        font-size: 1rem; /* Más pequeño en tablets */
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 0.85rem; /* Más pequeño en tablets */
    }

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

    .stat-number {
        font-size: 3.5rem;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .contact-cta p {
        font-size: 1rem;
        max-width: 450px; /* Ajustado para consistencia */
    }
}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE (max-width: 768px)
   ===================================================== */
@media (max-width: 768px) {
    :root {
        --header-h: var(--mobile-header-h);
        --section-padding: var(--section-padding-mobile);
        --container-padding: var(--container-padding-mobile);
        --grid-gap: var(--grid-gap-mobile);
    }
    
 

    .main-content {
        padding-top: var(--mobile-header-h);
    }

    .hero-page {
        padding: 50px 0 40px;
    }

    .page-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .page-description {
        font-size: 1rem;
        padding: 0 20px;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .about-main {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .about-text p {
        font-size: 1.05rem;
        text-align: left;
        margin: 0 5%;
        color:#000000;
        font-weight: 300;
    }

    .about-img {
        max-width: 380px;
        height: 290px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image .image-placeholder.large {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    /* Process cambia a 2 columnas en mobile */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-item,
    .team-member {
        padding: 30px 20px;
    }

    .process-step {
        padding: 25px 15px;
        margin: 0 5%;
    }

    .value-item img {
        width: 100px;
        height: 100px;
    }

    .value-item h3 {
        font-size: 1.3rem;
        margin: 20px 0 12px;
    }

    .step-number {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .step-content h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .step-content p {
        font-size: 0.9rem;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .contact-cta {
        padding: 50px 0;
    }

    .contact-cta h2 {
        font-size: 1.8rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 13px;
    }
}

/* =====================================================
   RESPONSIVE DESIGN - SMALL MOBILE (max-width: 480px)
   ===================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 25px; /* Ajustado para consistencia */
    }
    
    @media (max-width: 480px) {
    .value-item {
        margin-left: 15px;
        margin-right: 15px;
    }
}

    
    

    .hero-page {
        padding: 40px 0 30px;
    }

    .page-title {
        font-size: 1.5rem;
        letter-spacing: -0.3px;
    }

    .page-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .about-text h2 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 20px;
        color:#000000;
        font-weight: 300;
    }

    .about-img {
        max-width: 320px;
        height: 240px;
    }

    .value-item,
    .team-member {
        padding: 25px 15px;
    }

    /* Process cambia a 1 columna en small mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-step {
        padding: 30px 30px; /* Más espacioso al ser 1 columna */
        margin: 0 5%;
    }

    .value-item img {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }

    .value-item h3 {
        font-size: 1.2rem;
    }

    .value-item p,
    .member-info .description,
    .step-content p {
        font-size: 1rem;
        color:#000000;
    }

    .member-info h4 {
        font-size: 1.2rem;
    }

    .member-info .role {
        font-size: 0.8rem;
    }

    .step-number {
        font-size: 2.5rem; /* Más grande al tener más espacio */
        margin-bottom: 15px;
    }

    .step-content h4 {
        font-size: 1.2rem; /* Más grande al tener más espacio */
        margin-bottom: 12px;
    }

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

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-cta {
        padding: 40px 0;
    }

    .contact-cta h2 {
        font-size: 1.3rem;
    }

    .contact-cta p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 14px 25px;
        font-size: 12px;
    }
}

/* =====================================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE (max-width: 360px)
   ===================================================== */
@media (max-width: 360px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    @media (max-width: 360px) {
    .value-item {
        margin-left: 10px;
        margin-right: 10px;
    }
}

    

    .section-title {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.4rem;
    }

    .about-img {
        max-width: 280px;
        height: 210px;
    }

    .value-item img {
        width: 80px;
        height: 80px;
    }

    .value-item h3 {
        font-size: 1.1rem;
    }

    .step-number {
        font-size: 2.2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-cta h2 {
        font-size: 1.5rem;
    }
}

/* =====================================================
   ACCESSIBILITY & PERFORMANCE OPTIMIZATIONS
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .about-img,
    .value-item,
    .team-member,
    .process-step,
    .stat-item,
    .cta-button,
    .step-number,
    .stat-number,
    .value-item img {
        transition: none;
    }
}

/* Focus states for accessibility */
.cta-button:focus {
    outline: 2px solid #2c2c2c;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .value-item,
    .team-member,
    .process-step {
        border: 2px solid #000;
    }

    .about-img {
        border: 2px solid #000;
    }
}

/* Performance optimizations */
.value-item,
.team-member,
.process-step,
.stat-item,
.about-img {
    will-change: transform, box-shadow;
}

.step-number,
.stat-number,
.value-item img {
    will-change: transform, color;
}