 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     color: #2d3748;
     overflow-x: hidden;
     background: #f7fafc;
 }

 /* Header */
 header {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
     z-index: 1000;
     transition: all 0.3s ease;
 }

 nav {
     max-width: 1200px;
     margin: 0 auto;
     padding: 1.2rem 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.6rem;
     font-weight: 700;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .nav-links {
     display: flex;
     gap: 2rem;
     list-style: none;
 }

 .nav-links a {
     text-decoration: none;
     color: #4a5568;
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-links a:hover {
     color: #7ccc30;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #7ccc30;
     transition: width 0.3s ease;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 /* Hero Section */
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 6rem 2rem 4rem;
     background: linear-gradient(135deg, #7ccc3015 0%, #5ea42315 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 60%;
     height: 150%;
     background: radial-gradient(circle, rgba(124, 204, 48, 0.1) 0%, transparent 70%);
     animation: float 20s infinite ease-in-out;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-30px) rotate(5deg);
     }
 }

 .hero-content {
     max-width: 1200px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .hero-text h1 {
     font-size: 3.2rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1.5rem;
     color: #1a202c;
 }

 .hero-text .gradient-text {
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-text .location {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: white;
     padding: 0.5rem 1.2rem;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     color: #7ccc30;
     margin-bottom: 1.5rem;
     box-shadow: 0 5px 15px rgba(124, 204, 48, 0.2);
 }

 .hero-text p {
     font-size: 1.15rem;
     color: #718096;
     margin-bottom: 2.5rem;
     line-height: 1.8;
 }

 .download-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     padding: 1.2rem 2.5rem;
     font-size: 1.1rem;
     font-weight: 600;
     color: white;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     border: none;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(124, 204, 48, 0.3);
     text-decoration: none;
 }

 .download-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(124, 204, 48, 0.4);
 }

 .download-btn:active {
     transform: translateY(-1px);
 }

 .hero-image {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .phone-mockup {
     width: 100%;
     max-width: 400px;
     height: auto;
     animation: floatPhone 6s infinite ease-in-out;
     filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
 }

 @keyframes floatPhone {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 /* Features Section */
 .features {
     padding: 6rem 2rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: #1a202c;
 }

 .section-subtitle {
     text-align: center;
     font-size: 1.1rem;
     color: #718096;
     margin-bottom: 4rem;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2.5rem;
 }

 .feature-card {
     background: white;
     padding: 2.5rem;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     text-align: center;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(124, 204, 48, 0.15);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     margin: 0 auto 1.5rem;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
 }

 .feature-card h3 {
     font-size: 1.4rem;
     margin-bottom: 1rem;
     color: #2d3748;
 }

 .feature-card p {
     color: #718096;
     line-height: 1.7;
 }

 /* How it Works Section */
 .how-it-works {
     padding: 6rem 2rem;
     background: linear-gradient(135deg, #7ccc3008 0%, #5ea42308 100%);
 }

 .how-it-works-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .process-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 3rem;
     margin-top: 3rem;
 }

 .process-card {
     background: white;
     padding: 2.5rem;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     position: relative;
     transition: all 0.3s ease;
 }

 .process-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(124, 204, 48, 0.15);
 }

 .process-number {
     position: absolute;
     top: -20px;
     left: 30px;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.3rem;
     box-shadow: 0 5px 20px rgba(124, 204, 48, 0.3);
 }

 .process-card h3 {
     font-size: 1.3rem;
     margin: 1.5rem 0 1rem;
     color: #2d3748;
 }

 .process-card ul {
     list-style: none;
     padding: 0;
 }

 .process-card ul li {
     color: #718096;
     line-height: 1.8;
     padding-left: 1.5rem;
     position: relative;
     margin-bottom: 0.5rem;
 }

 .process-card ul li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #7ccc30;
     font-weight: 700;
 }

 /* Screenshots Section */
 .screenshots {
     padding: 6rem 2rem;
 }

 .screenshots-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.screenshots-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

 .screenshots-slider::-webkit-scrollbar {
  height: 8px;
}
.screenshots-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.screenshot-item {
  flex: 0 0 auto;
  width: 250px; /* Ajusta según el tamaño que quieras */
}

 .screenshot-item {
     display: inline-block;
     margin: 15px;
 }

 .screenshot-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #eee;
}

 .screenshot-frame:hover {
     transform: scale(1.05);
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
 }

.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
}



.phone-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.phone-frame {
  width: 300px;
  height: 600px;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  flex-shrink: 0;
}

 .screenshot-item:hover {
     transform: scale(1.05);
 }

 .screenshot-frame {
     background: white;
     padding: 1rem;
     border-radius: 25px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 /* Installation Guide */
 .installation {
     padding: 6rem 2rem;
     max-width: 900px;
     margin: 0 auto;
     background: linear-gradient(135deg, #7ccc3008 0%, #5ea42308 100%);
 }

 .steps {
     display: grid;
     gap: 2rem;
     margin-top: 3rem;
 }

 .step {
     display: flex;
     gap: 2rem;
     align-items: flex-start;
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .step:hover {
     transform: translateX(10px);
     box-shadow: 0 10px 30px rgba(124, 204, 48, 0.15);
 }

 .step-number {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.3rem;
     flex-shrink: 0;
 }

 .step-content h3 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
     color: #2d3748;
 }

 .step-content p {
     color: #718096;
     line-height: 1.7;
 }

 /* Developer Section */
 .developer {
     padding: 6rem 2rem;
     max-width: 900px;
     margin: 0 auto;
 }

 .developer-card {
     background: white;
     padding: 3rem;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     text-align: center;
 }

 .developer-icon {
     width: 100px;
     height: 100px;
     margin: 0 auto 1.5rem;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3rem;
 }

 .developer-card h3 {
     font-size: 1.8rem;
     margin-bottom: 0.5rem;
     color: #2d3748;
 }

 .developer-card .title {
     color: #7ccc30;
     font-weight: 600;
     font-size: 1.1rem;
     margin-bottom: 1.5rem;
 }

 .developer-card p {
     color: #718096;
     line-height: 1.8;
     font-size: 1.05rem;
 }

 /* Footer */
 footer {
     background: #1a202c;
     color: #cbd5e0;
     padding: 3rem 2rem 2rem;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-bottom: 2rem;
 }

 .footer-section h3 {
     color: white;
     margin-bottom: 1rem;
     font-size: 1.2rem;
 }

 .footer-section p,
 .footer-section a {
     color: #cbd5e0;
     line-height: 2;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section a:hover {
     color: #7ccc30;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: #2d3748;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: #7ccc30;
     transform: translateY(-3px);
 }

 .footer-bottom {
     max-width: 1200px;
     margin: 0 auto;
     padding-top: 2rem;
     border-top: 1px solid #2d3748;
     text-align: center;
     color: #718096;
 }

 /* WhatsApp Float Button */
 .whatsapp-float {
     position: fixed;
     bottom: 25px;
     left: 25px;
     width: 65px;
     height: 65px;
     background: #25D366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
     cursor: pointer;
     z-index: 9999;
     transition: all 0.3s ease;
     text-decoration: none;
     animation: pulse-whatsapp 2s infinite;
 }

 .whatsapp-float:hover {
     transform: scale(1.15);
     box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
 }

 .whatsapp-float::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     background: #25D366;
     animation: ripple 1.5s infinite;
     z-index: -1;
 }

 .whatsapp-icon {
     width: 38px;
     height: 38px;
     filter: brightness(0) invert(1);
 }

 @keyframes pulse-whatsapp {

     0%,
     100% {
         box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
     }

     50% {
         box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
     }
 }

 @keyframes ripple {
     0% {
         transform: scale(1);
         opacity: 0.5;
     }

     100% {
         transform: scale(1.3);
         opacity: 0;
     }
 }

 .whatsapp-tooltip {
     display: none;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

     .hero-content {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .hero-text h1 {
         font-size: 2.3rem;
     }

     .hero-image {
         order: -1;
     }

     .phone-mockup {
         max-width: 280px;
     }

     .process-grid {
         grid-template-columns: 1fr;
     }

     .whatsapp-float {
         width: 60px;
         height: 60px;
         bottom: 20px;
         left: 20px;
     }

     .whatsapp-icon {
         width: 35px;
         height: 35px;
     }
 }

 /* ========================================
   DEVELOPER SECTION STYLES
   ======================================== */

 .developer {
     padding: 6rem 2rem;
     background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
     position: relative;
     overflow: hidden;
 }

 .developer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 300px;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     opacity: 0.05;
     z-index: 0;
 }

 .developer-container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 /* === ESTRUCTURA PRINCIPAL === */
 .developer-content {
     display: flex;
     flex-wrap: wrap;
     gap: 3rem;
     margin: 4rem 0;
     justify-content: center;
     align-items: flex-start;
 }

 .company-info:hover {
     transform: translateY(-8px);
     box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
 }

 /* === COMPANY INFO === */
 .company-info {
     background: #fff;
     border-radius: 25px;
     padding: 3rem 2rem;
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
     max-width: 380px;
     margin: 2rem auto;
     text-align: center;
     transition: all 0.4s ease;
     position: relative;
 }

 /* Logo animado */
 .company-logo {
     width: 110px;
     height: 110px;
     background: radial-gradient(circle at center, #7ccc30 0%, #5ea423 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.8rem;
     box-shadow: 0 8px 25px rgba(124, 204, 48, 0.35);
     animation: float-logo 3s ease-in-out infinite;
 }

 .logo-circle {
     width: 120px;
     height: 120px;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
     box-shadow: 0 10px 30px rgba(124, 204, 48, 0.3);
     animation: float-logo 3s ease-in-out infinite;
 }

 @keyframes float-logo {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-8px);
     }
 }

 .company-name {
     font-size: 2.4rem;
     font-weight: 800;
     margin-bottom: 0.6rem;
     letter-spacing: -0.5px;
     color: #1a202c;
 }

 .company-name .code {
     color: #2d3748;
 }

 .company-name .per {
     background: linear-gradient(135deg, #7ccc30, #5ea423);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .company-tagline {
     color: #718096;
     font-size: 1.1rem;
     font-weight: 500;
     margin-bottom: 1.2rem;
 }

 .company-description {
     border-top: 1px solid #edf2f7;
     margin-top: 1.5rem;
     padding-top: 1.5rem;
 }

 .company-description p {
     color: #4a5568;
     font-size: 1rem;
     line-height: 1.8;
 }

 /* === ENGINEERS GRID === */
 .engineers-grid {
     flex: 2 1 600px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
 }

 /* === ENGINEER CARD === */
 .engineer-card {
     background: white;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     padding: 3rem;
     transition: transform 0.3s ease;
 }

 .engineer-card:hover {
     transform: translateY(-6px);
 }

 .engineer-avatar {
     position: relative;
     width: 140px;
     height: 140px;
     margin: 0 auto 2rem;
 }

 .engineer-avatar::before {
     content: '';
     position: absolute;
     inset: -10px;
     background: linear-gradient(135deg, #7ccc30, #5ea423, #48bb78);
     border-radius: 50%;
     animation: rotate-border 3s linear infinite;
     z-index: -1;
 }

 @keyframes rotate-border {
     100% {
         transform: rotate(360deg);
     }
 }

 .engineer-avatar::after {
     content: '';
     position: absolute;
     inset: 0;
     background: white;
     border-radius: 50%;
     z-index: -1;
 }

 .engineer-avatar span {
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
     border-radius: 50%;
 }

 .status-badge {
     position: absolute;
     bottom: 5px;
     right: -10px;
     background: white;
     padding: 0.4rem 0.8rem;
     border-radius: 20px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     font-size: 0.75rem;
     font-weight: 600;
     color: #16a34a;
     display: flex;
     align-items: center;
     gap: 0.4rem;
 }

 .status-dot {
     width: 8px;
     height: 8px;
     background: #16a34a;
     border-radius: 50%;
     animation: pulse-dot 2s ease-in-out infinite;
 }

 @keyframes pulse-dot {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
     }

     50% {
         opacity: 0.5;
         transform: scale(1.2);
     }
 }

 .engineer-info {
     text-align: center;
 }

 .engineer-title {
     color: #7ccc30;
     font-size: 0.95rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 0.5rem;
 }

 .engineer-name {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1a202c;
     margin-bottom: 0.5rem;
     letter-spacing: -1px;
 }

 .engineer-role {
     color: #718096;
     font-size: 1.1rem;
     margin-bottom: 2rem;
 }

 /* === SKILLS === */
 .engineer-skills {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
     justify-content: center;
     margin-bottom: 2.5rem;
 }

 .skill-badge {
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     color: white;
     padding: 0.6rem 1.2rem;
     border-radius: 25px;
     font-size: 0.9rem;
     font-weight: 600;
     box-shadow: 0 4px 12px rgba(124, 204, 48, 0.25);
     transition: all 0.3s ease;
 }

 .skill-badge:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 16px rgba(124, 204, 48, 0.35);
 }

 /* === STATS === */
 .engineer-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     padding-top: 2rem;
     border-top: 2px solid #e2e8f0;
 }

 .stat {
     text-align: center;
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 0.5rem;
 }

 .stat-label {
     color: #718096;
     font-size: 0.9rem;
     font-weight: 500;
 }

 /* === CONTACT === */
 .contact-methods {
     margin-top: 4rem;
     text-align: center;
 }

 .contact-title {
     font-size: 2rem;
     font-weight: 700;
     color: #1a202c;
     margin-bottom: 2.5rem;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.5rem;
     margin-bottom: 3rem;
 }

 .contact-card {
     background: white;
     padding: 2rem;
     border-radius: 20px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
     transition: all 0.3s ease;
     text-decoration: none;
     color: inherit;
     border: 2px solid transparent;
 }

 .contact-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
     border-color: #7ccc30;
 }

 .contact-icon {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .contact-card h4 {
     font-size: 1.2rem;
     font-weight: 600;
     color: #2d3748;
     margin-bottom: 0.5rem;
 }

 .contact-card p {
     color: #718096;
     font-size: 1rem;
 }

 /* === CTA === */
 .cta-section {
     background: linear-gradient(135deg, #7ccc30 0%, #5ea423 100%);
     padding: 3rem;
     border-radius: 20px;
     text-align: center;
     color: white;
     box-shadow: 0 15px 40px rgba(124, 204, 48, 0.3);
     margin-top: 3rem;
 }

 .cta-section h3 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 .cta-section p {
     font-size: 1.1rem;
     margin-bottom: 2rem;
     opacity: 0.95;
     max-width: 700px;
     margin: 0 auto 2rem;
     line-height: 1.7;
 }

 .cta-button {
     display: inline-flex;
     align-items: center;
     background: white;
     color: #7ccc30;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     text-decoration: none;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     transition: all 0.3s ease;
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
 }

 /* === RESPONSIVE === */
 @media (max-width: 992px) {
     .developer-content {
         flex-direction: column;
         align-items: center;
     }

     .company-info {
         position: relative;
         top: 0;
         max-width: 500px;
     }

     .engineers-grid {
         width: 100%;
         grid-template-columns: 1fr;
     }

     .engineer-stats {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .developer {
         padding: 4rem 1.5rem;
     }

     .engineer-name {
         font-size: 1.8rem;
     }

     .engineer-stats {
         grid-template-columns: 1fr;
     }

     .company-info {
         padding: 2rem;
     }

     .cta-section {
         padding: 2rem;
     }

     .cta-section h3 {
         font-size: 1.6rem;
     }
 }