*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:auto;height:100%}body{font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;line-height:1.6;color:#2d3748;background-color:#f8fafc;min-height:100vh;margin:0;padding:0}.site{min-height:100vh;display:flex;flex-direction:column}.site-content{flex-grow:1}.site-footer{margin-top:auto}:root{--primary-blue:#003d7a;--accent-teal:#00a19c;--light-bg:#f8fafc;--white:#ffffff;--gray-50:#f9fafb;--gray-100:#f3f4f6;--gray-200:#e5e7eb;--gray-300:#d1d5db;--gray-400:#9ca3af;--gray-500:#6b7280;--gray-600:#4b5563;--gray-700:#374151;--gray-800:#1f2937;--gray-900:#111827;--success:#10b981;--warning:#f59e0b;--error:#ef4444;--shadow-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);--shadow-md:0 4px 6px -1px rgba(0, 0, 0, 0.1),0 2px 4px -1px rgba(0, 0, 0, 0.06);--shadow-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05);--shadow-xl:0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);--shadow-2xl:0 25px 50px -12px rgba(0, 0, 0, 0.25);--card-shadow:0 4px 6px -1px rgba(0, 61, 122, 0.1),0 2px 4px -1px rgba(0, 61, 122, 0.06);--card-shadow-hover:0 20px 25px -5px rgba(0, 61, 122, 0.1),0 10px 10px -5px rgba(0, 61, 122, 0.04);--transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);--transition-fast:all 0.15s cubic-bezier(0.4, 0, 0.2, 1);--radius-sm:0.375rem;--radius-md:0.5rem;--radius-lg:0.75rem;--radius-xl:1rem;--radius-2xl:1.5rem;--radius-full:9999px}.container{max-width:1200px;margin:0 auto;padding:0 2rem}.navbar{position:fixed;top:0;width:100%;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);border-bottom:1px solid var(--gray-200);z-index:1000;transition:var(--transition)}.navbar.scrolled{background:rgba(255,255,255,.98);box-shadow:var(--shadow-lg)}.nav-container{max-width:1200px;margin:0 auto;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center}.brand-logo{height:auto;width:auto;max-height:75px;max-width:400px;transition:var(--transition);object-fit:contain}.brand-logo:hover{transform:scale(1.02)}.nav-brand h2{color:var(--primary-blue);font-weight:700;font-size:1.5rem;margin:0}.brand-subtitle{color:var(--accent-teal);font-size:.875rem;font-weight:500;margin-left:.25rem}.nav-menu{display:flex;list-style:none;gap:1.5rem;margin:0}.nav-pill{display:inline-flex;align-items:center;padding:.75rem 1.25rem;text-decoration:none;color:var(--gray-700);font-weight:500;border-radius:var(--radius-full);transition:var(--transition);position:relative;font-size:.9rem}.nav-pill:hover{background:var(--gray-100);color:var(--primary-blue);transform:translateY(-1px)}.nav-pill:active{transform:translateY(0)}.nav-dropdown{position:relative}.dropdown-toggle{display:flex;align-items:center;gap:.5rem}.dropdown-toggle i{font-size:.75rem;transition:var(--transition)}.nav-dropdown:hover .dropdown-toggle i{transform:rotate(180deg)}.dropdown-menu{position:absolute;top:100%;left:0;background:var(--white);border-radius:var(--radius-lg);box-shadow:var(--shadow-xl);border:1px solid var(--gray-200);min-width:220px;list-style:none;padding:.75rem 0;margin:.5rem 0 0 0;opacity:0;visibility:hidden;transform:translateY(-10px);transition:var(--transition);z-index:1000}.nav-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}.dropdown-menu li{margin:0}.dropdown-menu a{display:block;padding:.875rem 1.25rem;color:var(--gray-700);text-decoration:none;font-weight:500;transition:var(--transition);border-radius:0;font-size:.875rem;line-height:1.4}.dropdown-menu a:hover{background:var(--gray-50);color:var(--primary-blue);transform:none}.nav-pill.active{background:var(--accent-teal);color:var(--white)}.nav-pill.active:hover{background:var(--accent-teal);color:var(--white);transform:translateY(-1px)}.page-hero{background:linear-gradient(135deg,var(--primary-blue) 0,var(--accent-teal) 100%);color:var(--white);padding:4rem 0;text-align:center}.page-title{font-size:3rem;font-weight:700;margin-bottom:1rem;line-height:1.2}.page-subtitle{font-size:1.25rem;opacity:.9;max-width:600px;margin:0 auto}.content-section{padding:4rem 0}.content-section.alt-bg{background:var(--gray-50)}.content-card{background:var(--white);padding:2.5rem;border-radius:var(--radius-xl);box-shadow:var(--card-shadow);margin-bottom:3rem;transition:var(--transition)}.content-card:hover{transform:translateY(-5px);box-shadow:var(--card-shadow-hover)}.content-subtitle{color:var(--primary-blue);font-size:1.5rem;font-weight:600;margin-bottom:1.5rem;line-height:1.3}.content-text{color:var(--gray-600);font-size:1.1rem;line-height:1.7;margin-bottom:1.5rem}.content-text:last-child{margin-bottom:0}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;margin:3rem 0}.stat-item{display:flex;align-items:center;background:var(--white);padding:1.5rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);transition:var(--transition)}.stat-item:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}.stat-icon{background:linear-gradient(135deg,var(--primary-blue),var(--accent-teal));color:var(--white);width:50px;height:50px;border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;margin-right:1rem;font-size:1.25rem}.stat-content h4{color:var(--primary-blue);font-size:1.25rem;font-weight:700;margin:0}.stat-content p{color:var(--gray-600);font-size:.9rem;margin:0}.experience-section{margin-top:3rem}.experience-card{background:var(--white);padding:2rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);margin-bottom:2rem;border-left:4px solid var(--accent-teal);transition:var(--transition)}.experience-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}.experience-card h3{color:var(--primary-blue);font-size:1.25rem;font-weight:600;margin-bottom:1rem}.experience-card p{color:var(--gray-600);line-height:1.6;font-style:italic;margin:0}.location-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:2rem}.location-card{background:var(--white);padding:2rem;border-radius:var(--radius-xl);box-shadow:var(--shadow-md);text-align:center;transition:var(--transition)}.location-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}.location-icon{background:linear-gradient(135deg,var(--primary-blue),var(--accent-teal));color:var(--white);width:60px;height:60px;border-radius:var(--radius-full);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;font-size:1.5rem}.location-card h3{color:var(--primary-blue);font-size:1.5rem;font-weight:600;margin-bottom:1rem}.location-card p{color:var(--gray-600);line-height:1.6;margin:0}.solution-section{padding:4rem 0}.solution-section.alt-bg{background:var(--gray-50)}.solution-header{text-align:center;margin-bottom:3rem}.solution-title{color:var(--primary-blue);font-size:2.5rem;font-weight:700;margin-bottom:1.5rem;line-height:1.2}.solution-intro{color:var(--gray-600);font-size:1.2rem;line-height:1.6;max-width:800px;margin:0 auto}.solutions-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem;margin-top:2rem}.solution-card{background:var(--white);padding:2.5rem;border-radius:var(--radius-xl);box-shadow:var(--card-shadow);transition:var(--transition);border-left:4px solid var(--accent-teal)}.solution-card:hover{transform:translateY(-5px);box-shadow:var(--card-shadow-hover)}.solution-card.featured{border-left:4px solid var(--primary-blue);background:linear-gradient(135deg,var(--white) 0,#f8fafc 100%)}.solution-icon{background:linear-gradient(135deg,var(--primary-blue),var(--accent-teal));color:var(--white);width:60px;height:60px;border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;font-size:1.5rem}.solution-card.featured .solution-icon{background:linear-gradient(135deg,var(--accent-teal),var(--primary-blue))}.solution-card h3{color:var(--primary-blue);font-size:1.4rem;font-weight:600;margin-bottom:.5rem;line-height:1.3}.solution-subtitle{color:var(--gray-500);font-size:.9rem;font-style:italic;margin-bottom:1rem}.solution-card p{color:var(--gray-600);line-height:1.6;margin-bottom:1rem}.solution-card p:last-child{margin-bottom:0}.solution-features{list-style:none;padding:0;margin:1rem 0 0 0}.solution-features li{color:var(--gray-600);line-height:1.6;margin-bottom:.75rem;padding-left:1.5rem;position:relative}.solution-features li:before{content:'•';color:var(--accent-teal);font-size:1.2rem;position:absolute;left:0;top:0}.solution-features li strong{color:var(--primary-blue);font-weight:600}@media (max-width:768px){.solution-title{font-size:2rem}.solution-intro{font-size:1.1rem}.solutions-grid{grid-template-columns:1fr;gap:1.5rem}.solution-card{padding:2rem}}.faq-page{padding-top:100px}.faq-section{padding:4rem 0}.faq-container{max-width:800px;margin:0 auto}.faq-item{background:var(--white);border-radius:var(--radius-lg);margin-bottom:1rem;box-shadow:var(--shadow-md);overflow:hidden;transition:var(--transition)}.faq-item:hover{box-shadow:var(--shadow-lg)}.faq-item.active{box-shadow:var(--card-shadow-hover)}.faq-question{padding:1.5rem 2rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:var(--white);border-left:4px solid var(--accent-teal);transition:var(--transition)}.faq-question:hover{background:var(--gray-50)}.faq-item.active .faq-question{background:var(--gray-50);border-left-color:var(--primary-blue)}.faq-question h3{color:var(--primary-blue);font-size:1.1rem;font-weight:600;margin:0;line-height:1.4;flex:1;margin-right:1rem}.faq-arrow{color:var(--accent-teal);font-size:1rem;transition:var(--transition);flex-shrink:0}.faq-item.active .faq-arrow{color:var(--primary-blue)}.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease;background:var(--white)}.faq-answer p{padding:0 2rem 1.5rem 2rem;color:var(--gray-600);line-height:1.7;margin:0;font-size:1rem}.faq-services{padding:0 2rem 1.5rem 2rem;border-top:1px solid var(--gray-200);margin-top:1rem}.faq-services h4{color:var(--primary-blue);font-size:1.1rem;font-weight:600;margin:1rem 0 .75rem 0}.faq-services ul{list-style:none;padding:0;margin:0}.faq-services li{color:var(--gray-600);line-height:1.6;margin-bottom:.75rem;padding-left:1.5rem;position:relative}.faq-services li:before{content:'•';color:var(--accent-teal);font-size:1.2rem;position:absolute;left:0;top:0}.faq-services li strong{color:var(--primary-blue);font-weight:600}.faq-services p{margin-top:1rem;font-style:italic;color:var(--gray-500)}@media (max-width:768px){.faq-question{padding:1.25rem 1.5rem}.faq-question h3{font-size:1rem}.faq-answer p,.faq-services{padding-left:1.5rem;padding-right:1.5rem}}.hamburger{display:none;flex-direction:column;cursor:pointer;gap:.25rem}.hamburger span{width:1.5rem;height:2px;background:var(--primary-blue);transition:var(--transition);border-radius:1px}.hamburger.active span:first-child{transform:rotate(45deg) translate(.35rem,.35rem)}.hamburger.active span:nth-child(2){opacity:0}.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(.35rem,-.35rem)}.hero{min-height:100vh;display:flex;align-items:center;background:linear-gradient(135deg,var(--light-bg) 0,rgba(0,161,156,.1) 100%);padding-top:5rem;position:relative;overflow:hidden}.hero-container{max-width:1200px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}.hero-text-card{background:var(--white);padding:3rem;border-radius:var(--radius-2xl);box-shadow:var(--card-shadow);animation:slideInLeft .8s cubic-bezier(.4,0,.2,1)}.hero-badge{display:inline-flex;align-items:center;padding:.5rem 1rem;background:linear-gradient(135deg,var(--accent-teal),#20c997);color:var(--white);border-radius:var(--radius-full);font-size:.875rem;font-weight:600;margin-bottom:1.5rem;box-shadow:var(--shadow-sm)}.hero-title{font-size:3rem;font-weight:700;line-height:1.1;color:var(--gray-900);margin-bottom:1.5rem}.text-accent{color:var(--accent-teal)}.hero-description{font-size:1.125rem;color:var(--gray-600);margin-bottom:2rem;line-height:1.7}.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.5rem;font-weight:600;text-decoration:none;border-radius:var(--radius-lg);transition:var(--transition);cursor:pointer;border:none;font-size:1rem;line-height:1;text-align:center;position:relative;overflow:hidden}.btn:before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);transition:left .5s}.btn:hover:before{left:100%}.btn-primary{background:linear-gradient(135deg,var(--primary-blue),#0056b3);color:var(--white);box-shadow:var(--shadow-md)}.btn-primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}.btn-outline{background:0 0;color:var(--primary-blue);border:2px solid var(--primary-blue)}.btn-outline:hover{background:var(--primary-blue);color:var(--white);transform:translateY(-2px);box-shadow:var(--shadow-md)}.btn-outline-small,.btn-primary-small{padding:.5rem 1rem;font-size:.875rem}.btn-primary-small{background:linear-gradient(135deg,var(--accent-teal),#20c997);color:var(--white);box-shadow:var(--shadow-sm)}.btn-primary-small:hover{transform:translateY(-1px);box-shadow:var(--shadow-md)}.btn-outline-small{background:0 0;color:var(--primary-blue);border:1px solid var(--gray-300)}.btn-outline-small:hover{background:var(--primary-blue);color:var(--white);border-color:var(--primary-blue)}.btn-full{width:100%}.hero-visual{position:relative;min-height:500px;display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(2,1fr);gap:1.5rem;padding:3rem 2rem;background:linear-gradient(135deg,#f8f9fa 0,#e9ecef 100%);border-radius:20px;align-items:center}.floating-card{background:var(--white);padding:1.5rem;border-radius:var(--radius-xl);box-shadow:0 4px 20px rgba(0,0,0,.1);transition:all .3s ease;text-align:center;width:180px;height:160px;display:flex;flex-direction:column;align-items:center;justify-content:center}.floating-card:hover{transform:translateY(-8px) scale(1.02);box-shadow:0 8px 30px rgba(0,0,0,.15)}.floating-card.card-1{grid-column:2/4;grid-row:1;animation-delay:.3s;justify-self:center;align-self:center}.floating-card.card-2{grid-column:2;grid-row:2;animation-delay:.6s;justify-self:end;align-self:center;margin-right:1rem}.floating-card.card-3{grid-column:3;grid-row:2;animation-delay:.9s;justify-self:start;align-self:center;margin-left:1rem}.card-icon{width:3rem;height:3rem;background:linear-gradient(135deg,var(--accent-teal),#20c997);border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;margin-bottom:.75rem;color:var(--white);font-size:1.25rem;flex-shrink:0}.floating-card h4{color:var(--gray-900);font-weight:600;margin-bottom:.25rem;font-size:.95rem;line-height:1.2}.floating-card p{color:var(--gray-600);font-size:.8rem;line-height:1.3;margin:0}section{padding:5rem 0}.section-header{text-align:center;margin-bottom:4rem}.section-badge{display:inline-flex;align-items:center;padding:.5rem 1rem;background:var(--gray-100);color:var(--primary-blue);border-radius:var(--radius-full);font-size:.875rem;font-weight:600;margin-bottom:1rem}.section-title{font-size:2.5rem;font-weight:700;color:var(--gray-900);margin-bottom:1rem;line-height:1.2}.section-subtitle{font-size:1.125rem;color:var(--gray-600);max-width:600px;margin:0 auto;line-height:1.7}.services{background:var(--white)}.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;margin-top:3rem}.service-card{background:var(--white);padding:2.5rem;border-radius:var(--radius-xl);box-shadow:var(--card-shadow);transition:var(--transition);border:1px solid var(--gray-200);position:relative;overflow:hidden;opacity:0;transform:translateY(30px);min-height:420px;display:flex;flex-direction:column}.service-card.animate{opacity:1;transform:translateY(0)}.service-card:hover{transform:translateY(-8px);box-shadow:var(--card-shadow-hover)}.service-card.featured{border:2px solid var(--accent-teal);transform:scale(1.02)}.service-card.featured:hover{transform:translateY(-8px) scale(1.02)}.featured-badge{position:absolute;top:1rem;right:1rem;background:linear-gradient(135deg,var(--accent-teal),#20c997);color:var(--white);padding:.25rem .75rem;border-radius:var(--radius-full);font-size:.75rem;font-weight:600}.service-icon{width:4rem;height:4rem;background:linear-gradient(135deg,var(--primary-blue),#0056b3);border-radius:var(--radius-xl);display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;color:var(--white);font-size:1.5rem}.service-card.featured .service-icon{background:linear-gradient(135deg,var(--accent-teal),#20c997)}.service-card h3{color:var(--gray-900);font-weight:700;font-size:1.5rem;margin-bottom:1rem}.service-card>p{color:var(--gray-600);margin-bottom:1.5rem;line-height:1.7}.service-features{list-style:none;margin-bottom:2rem;margin-top:1rem;flex-grow:1}.service-features li{display:flex;align-items:center;gap:.75rem;color:var(--gray-700);margin-bottom:.75rem;font-size:.9rem;padding-left:.25rem}.service-features li i{color:var(--success);font-size:.875rem;flex-shrink:0;width:1rem;text-align:center}.service-cta{margin-top:auto}.about{background:var(--light-bg)}.about-content{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}.about-text .section-header{text-align:left;margin-bottom:2rem}.about-description p{color:var(--gray-600);margin-bottom:1.5rem;font-size:1.125rem;line-height:1.7}.stats-cards{display:flex;gap:1rem;margin-top:2rem}.stat-card{background:var(--white);padding:1.5rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);text-align:center;flex:1;transition:var(--transition)}.stat-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}.stat-number{font-size:2rem;font-weight:700;color:var(--accent-teal);margin-bottom:.5rem}.stat-label{color:var(--gray-600);font-size:.875rem;font-weight:500}.about-visual{position:relative;height:400px}.team-card{background:var(--white);padding:2rem;border-radius:var(--radius-2xl);box-shadow:var(--card-shadow);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);max-width:300px;text-align:center;transition:var(--transition)}.team-card:hover{transform:translate(-50%,-50%) translateY(-5px);box-shadow:var(--card-shadow-hover)}.team-icon{width:4rem;height:4rem;background:linear-gradient(135deg,var(--accent-teal),#20c997);border-radius:var(--radius-xl);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;color:var(--white);font-size:1.5rem}.team-card h3{color:var(--gray-900);font-weight:700;margin-bottom:1rem}.team-card p{color:var(--gray-600);line-height:1.6}.value-cards{position:absolute;top:20%;right:-10%;display:flex;flex-direction:column;gap:1rem}.value-card{background:var(--white);padding:1rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);display:flex;align-items:center;gap:.75rem;transition:var(--transition);white-space:nowrap}.value-card:hover{transform:translateX(-5px);box-shadow:var(--shadow-md)}.value-card i{color:var(--accent-teal);font-size:1.25rem}.value-card span{color:var(--gray-700);font-weight:600;font-size:.9rem}.contact{background:var(--white)}.contact-content{display:grid;grid-template-columns:1fr 2fr;gap:4rem;margin-top:3rem}.contact-info{display:flex;flex-direction:column;gap:1.5rem}.contact-card{background:var(--light-bg);padding:2rem;border-radius:var(--radius-xl);text-align:center;transition:var(--transition);opacity:0;transform:translateX(-30px)}.contact-card.animate{opacity:1;transform:translateX(0)}.contact-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}.contact-icon{width:3rem;height:3rem;background:linear-gradient(135deg,var(--primary-blue),#0056b3);border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;color:var(--white);font-size:1.25rem}.contact-card h4{color:var(--gray-900);font-weight:600;margin-bottom:.5rem}.contact-card p{color:var(--gray-600)}.contact-form-container{background:var(--white);padding:3rem;border-radius:var(--radius-2xl);box-shadow:var(--card-shadow);border:1px solid var(--gray-200)}.contact-form{display:flex;flex-direction:column;gap:1.5rem}.form-group{display:flex;flex-direction:column}.form-group label{color:var(--gray-700);font-weight:600;margin-bottom:.5rem;font-size:.9rem}.form-group input,.form-group select,.form-group textarea{padding:.875rem 1rem;border:2px solid var(--gray-200);border-radius:var(--radius-md);font-size:1rem;transition:var(--transition);background:var(--white);color:var(--gray-700)}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:0;border-color:var(--accent-teal);box-shadow:0 0 0 3px rgba(0,161,156,.1)}.form-group textarea{resize:vertical;min-height:120px}.wpcf7-form{display:flex;flex-direction:column;gap:1.5rem}.wpcf7-form .form-group{display:flex;flex-direction:column}.wpcf7-form .form-group label{color:var(--gray-700);font-weight:600;margin-bottom:.5rem;font-size:.9rem}.wpcf7-form input[type=email],.wpcf7-form input[type=tel],.wpcf7-form input[type=text],.wpcf7-form select,.wpcf7-form textarea{padding:.875rem 1rem;border:2px solid var(--gray-200);border-radius:var(--radius-md);font-size:1rem;transition:var(--transition);background:var(--white);color:var(--gray-700);width:100%;box-sizing:border-box}.wpcf7-form input[type=email]:focus,.wpcf7-form input[type=tel]:focus,.wpcf7-form input[type=text]:focus,.wpcf7-form select:focus,.wpcf7-form textarea:focus{outline:0;border-color:var(--accent-teal);box-shadow:0 0 0 3px rgba(0,161,156,.1)}.wpcf7-form textarea{resize:vertical;min-height:120px;font-family:inherit}.wpcf7-form .wpcf7-submit{padding:1rem 2rem;background:var(--primary-blue);color:var(--white);border:none;border-radius:var(--radius-md);font-size:1rem;font-weight:600;cursor:pointer;transition:var(--transition);display:inline-flex;align-items:center;justify-content:center;gap:.5rem;width:100%}.wpcf7-form .wpcf7-submit:hover{background:var(--accent-teal);transform:translateY(-2px);box-shadow:var(--shadow-lg)}.wpcf7-form .wpcf7-submit:active{transform:translateY(0)}.wpcf7-form .wpcf7-not-valid-tip{color:var(--error);font-size:.875rem;margin-top:.25rem}.wpcf7-form .wpcf7-acceptance-missing,.wpcf7-form .wpcf7-validation-errors{border:1px solid var(--error);background:rgba(239,68,68,.1);color:var(--error);padding:1rem;border-radius:var(--radius-md);margin:1rem 0}.wpcf7-form .wpcf7-mail-sent-ok{border:1px solid var(--success);background:rgba(16,185,129,.1);color:var(--success);padding:1rem;border-radius:var(--radius-md);margin:1rem 0}.wpcf7-form .wpcf7-spinner{visibility:hidden}.wpcf7-form.submitting .wpcf7-spinner{visibility:visible}.wpcf7 form.wpcf7-form p{margin:0}.wpcf7 form.wpcf7-form .form-group p{margin:0}.contact-form-container .wpcf7{width:100%}.contact-form-container .wpcf7-form p{margin:0;padding:0}.contact-form-container .wpcf7-form .form-group{margin-bottom:1.5rem}.contact-form-container .wpcf7-form .form-group:last-child{margin-bottom:0}.contact-form-container .wpcf7-form input,.contact-form-container .wpcf7-form select,.contact-form-container .wpcf7-form textarea{width:100%!important;max-width:100%!important;box-sizing:border-box!important;margin:0!important}.footer{background:var(--gray-900);color:var(--white);padding:3rem 0 1rem}.footer-content{display:grid;grid-template-columns:1fr 2fr;gap:3rem;margin-bottom:3rem}.footer-brand h3{color:var(--white);font-weight:700;margin-bottom:1rem;font-size:1.5rem}.footer-brand p{color:var(--gray-400);line-height:1.7}.footer-location{color:var(--gray-500);font-size:.9rem;margin-top:1rem;font-weight:500;opacity:.8}.footer-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.footer-card{background:rgba(255,255,255,.05);padding:2rem;border-radius:var(--radius-lg);transition:var(--transition);opacity:0;transform:translateY(30px)}.footer-card.animate{opacity:1;transform:translateY(0)}.footer-card:hover{background:rgba(255,255,255,.08);transform:translateY(-3px)}.footer-card h4{color:var(--white);font-weight:600;margin-bottom:1rem;font-size:1.125rem}.footer-card ul{list-style:none}.footer-card li{margin-bottom:.75rem}.footer-card a{color:var(--gray-400);text-decoration:none;transition:var(--transition);display:flex;align-items:center;gap:.5rem}.footer-card a:hover{color:var(--accent-teal)}.footer-card .fas{color:var(--accent-teal);font-size:.875rem}.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem}.footer-bottom-content{display:flex;justify-content:space-between;align-items:center}.footer-bottom p{color:var(--gray-400);font-size:.9rem}@keyframes slideInLeft{from{opacity:0;transform:translateX(-50px)}to{opacity:1;transform:translateX(0)}}@keyframes fadeInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes float{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-10px) scale(1)}}@keyframes spreadFromCenter1{0%{opacity:0;transform:translate(0,100px) scale(.3)}30%{opacity:1;transform:translate(0,-20px) scale(1.1)}50%{transform:translate(0,10px) scale(.95)}70%{transform:translate(0,-5px) scale(1.02)}85%{transform:translate(0,2px) scale(.99)}100%{opacity:1;transform:translate(0,0) scale(1)}}@keyframes spreadFromCenter2{0%{opacity:0;transform:translate(100px,0) scale(.3)}30%{opacity:1;transform:translate(-20px,0) scale(1.1)}50%{transform:translate(10px,0) scale(.95)}70%{transform:translate(-5px,0) scale(1.02)}85%{transform:translate(2px,0) scale(.99)}100%{opacity:1;transform:translate(0,0) scale(1)}}@keyframes spreadFromCenter3{0%{opacity:0;transform:translate(-100px,0) scale(.3)}30%{opacity:1;transform:translate(20px,0) scale(1.1)}50%{transform:translate(-10px,0) scale(.95)}70%{transform:translate(5px,0) scale(1.02)}85%{transform:translate(-2px,0) scale(.99)}100%{opacity:1;transform:translate(0,0) scale(1)}}.floating-card{opacity:0}.floating-card.card-1{animation:spreadFromCenter1 1.4s cubic-bezier(.34,1.56,.64,1) .2s forwards,float 6s ease-in-out infinite 1.6s}.floating-card.card-2{animation:spreadFromCenter2 1.4s cubic-bezier(.34,1.56,.64,1) .4s forwards,float 6s ease-in-out infinite 1.8s}.floating-card.card-3{animation:spreadFromCenter3 1.4s cubic-bezier(.34,1.56,.64,1) .6s forwards,float 6s ease-in-out infinite 2s}@media (max-width:1200px){.hero-visual{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,1fr);min-height:450px;padding:2rem 1rem}.floating-card.card-1{grid-column:1/3;grid-row:1;justify-self:center}.floating-card.card-2{grid-column:1/3;grid-row:2;justify-self:center;margin-right:0}.floating-card.card-3{grid-column:1/3;grid-row:3;justify-self:center;margin-left:0}}@media (max-width:1024px){.hero-container{grid-template-columns:1fr;text-align:center;gap:3rem}.hero-visual{height:300px}.hero{padding-top:2rem;min-height:auto}.hero-container{grid-template-columns:1fr;gap:2rem;padding:0 1.5rem}.hero-visual{min-height:535px;padding:2rem 1rem}.about-content{grid-template-columns:1fr;gap:3rem}.about-text .section-header{text-align:center}.about-visual{height:auto;padding:1rem 0;margin-top:1rem;position:static;display:flex;flex-direction:column;align-items:center;gap:1rem}.team-card{position:static!important;transform:none!important;max-width:100%;margin:0 auto;top:auto!important;left:auto!important}.team-card:hover{transform:translateY(-5px)!important}.value-cards{position:static;margin-top:2rem;justify-content:center;align-items:center}.contact-content{grid-template-columns:1fr;gap:3rem}.footer-content{grid-template-columns:1fr;gap:2rem;text-align:center}.footer-cards{grid-template-columns:repeat(2,1fr)}}@media (max-width:1024px){.services-grid{grid-template-columns:1fr;gap:2rem}}@media (max-width:768px){.container{padding:0 1.5rem}.nav-container{padding:1rem 1.5rem}.nav-menu{position:fixed;left:-100%;top:70px;flex-direction:column;background-color:var(--white);width:100%;text-align:center;transition:.3s;box-shadow:var(--shadow-lg);border-radius:0 0 var(--radius-lg) var(--radius-lg);padding:2rem 0;gap:1rem;align-items:center}.nav-menu .nav-pill{justify-content:center;text-align:center;width:auto;margin:0 auto}.nav-menu.active{left:0}.hamburger{display:flex}.nav-dropdown .dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;border-radius:0;background:var(--gray-50);margin:0;max-height:0;overflow:hidden;transition:max-height .3s ease,margin .3s ease;text-align:center}.nav-dropdown.active .dropdown-menu{max-height:200px;margin:.5rem 0}.dropdown-menu a{padding:1rem 2rem;border-left:3px solid transparent;text-align:center;display:block}.dropdown-menu a:hover{border-left-color:var(--accent-teal)}.hero-title{font-size:2.5rem}.hero-text-card{padding:2rem}.hero-buttons{flex-direction:column;align-items:center}.section-title{font-size:2rem}.services-grid{grid-template-columns:1fr;gap:1.5rem}.stats-cards{flex-direction:column;gap:1rem;margin-bottom:1rem}.value-cards{position:static;flex-direction:column;justify-content:center;align-items:center;margin-top:1rem;gap:.75rem;width:100%}.value-card{width:auto;min-width:180px;max-width:calc(100vw - 3rem);white-space:nowrap;justify-content:flex-start}.contact-form-container{padding:2rem}.footer-cards{grid-template-columns:1fr;gap:1.5rem}.footer-bottom-content{flex-direction:column;gap:1rem;text-align:center}}@media (max-width:480px){.container{padding:0 1rem;max-width:100%;overflow-x:hidden}.site,.site-content,body,html{overflow-x:hidden}.services-grid{grid-template-columns:1fr;gap:1.5rem}.service-card{max-width:100%;box-sizing:border-box}body{overflow-x:hidden;width:100%}.hero-title{font-size:2rem;word-wrap:break-word;overflow-wrap:break-word;hyphens:auto}.hero-description{font-size:1rem;word-wrap:break-word;overflow-wrap:break-word}.hero-text-card{padding:1.5rem;margin:0 .5rem;word-wrap:break-word;overflow-wrap:break-word}.floating-card{display:flex;width:280px;height:140px;margin:.75rem auto;position:static;grid-column:unset;grid-row:unset;justify-self:center;align-self:center;max-width:calc(100vw - 2rem);word-wrap:break-word;overflow-wrap:break-word;flex-direction:column;text-align:center;justify-content:center}.hero-visual{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1rem .5rem;grid-template-columns:unset;grid-template-rows:unset;max-width:100%;overflow-x:hidden}.section-title{font-size:1.75rem;word-wrap:break-word;overflow-wrap:break-word;text-align:center;padding:0 .5rem}.section-subtitle{word-wrap:break-word;overflow-wrap:break-word;padding:0 .5rem}.about-description p{word-wrap:break-word;overflow-wrap:break-word;hyphens:auto;font-size:1rem;line-height:1.6}.team-card{margin:0 1rem;max-width:calc(100vw - 2rem);word-wrap:break-word;overflow-wrap:break-word}.team-card h3{font-size:1.1rem;word-wrap:break-word;overflow-wrap:break-word}.team-card p{font-size:.9rem;word-wrap:break-word;overflow-wrap:break-word}.cta-card{margin:0 .5rem;padding:1.5rem 1rem;word-wrap:break-word;overflow-wrap:break-word}.cta-card h3{font-size:1.1rem;word-wrap:break-word;overflow-wrap:break-word}.cta-card p{font-size:.9rem;word-wrap:break-word;overflow-wrap:break-word}.service-card{padding:1.5rem;margin:0 .5rem 1.5rem .5rem}.service-icon{margin:0 auto 1.5rem auto;flex-shrink:0}.contact-form-container{padding:1.5rem;margin:0 .5rem}.footer-card{padding:1.5rem}.about{padding:3rem 0}.about .container{padding:0 1rem}.about-text{max-width:100%;overflow-x:hidden;word-wrap:break-word;overflow-wrap:break-word;padding:0 .5rem}.about-text .section-header{padding:0 .5rem}.about-text .section-badge,.about-text .section-subtitle,.about-text .section-title{max-width:calc(100vw - 2rem);word-wrap:break-word;overflow-wrap:break-word;hyphens:auto}h1,h2,h3,h4,h5,h6,p{word-wrap:break-word;overflow-wrap:break-word;max-width:100%}*{max-width:100%;box-sizing:border-box}.about-content,.about-visual,.section-header{max-width:100%;overflow-x:hidden}.value-cards{flex-direction:column!important;align-items:center!important;gap:.5rem!important;width:100%!important;padding:0 1rem!important}.value-card{width:100%!important;max-width:280px!important;min-width:auto!important;margin:0 auto!important;justify-content:center!important;text-align:center!important}}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:1rem}.mb-4{margin-bottom:1.5rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:1rem}.mt-4{margin-top:1.5rem}@media print{.floating-card,.hamburger,.hero-visual,.navbar{display:none}.hero-container{grid-template-columns:1fr}.contact-content,.footer-cards,.services-grid{grid-template-columns:1fr}.contact-card,.footer-card,.service-card{box-shadow:none;border:1px solid var(--gray-300)}}.inline-link{color:var(--accent-teal);text-decoration:none;font-weight:500;transition:var(--transition-base)}.inline-link:hover{color:var(--primary-blue);text-decoration:underline}.section-cta{margin-top:4rem;text-align:center}.cta-card{background:linear-gradient(135deg,var(--primary-blue),var(--accent-teal));padding:3rem 2rem;border-radius:1.5rem;color:#fff;box-shadow:var(--shadow-xl)}.cta-card h3{font-size:1.5rem;font-weight:600;margin-bottom:1rem}.cta-card p{font-size:1.125rem;opacity:.9;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}.cta-buttons .btn{min-width:200px}.cta-buttons .btn-outline{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.3);color:#fff}.cta-buttons .btn-outline:hover{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.5)}.cta-buttons .btn-primary{background:#fff;color:var(--primary-blue)}.cta-buttons .btn-primary:hover{background:var(--gray-100);transform:translateY(-2px)}@media (max-width:768px){.cta-card{padding:2rem 1.5rem}.cta-card h3{font-size:1.25rem}.cta-card p{font-size:1rem}.cta-buttons{flex-direction:column;align-items:center}}.whatsapp-float{position:fixed;bottom:20px;right:20px;z-index:1000}.whatsapp-float a{display:flex;align-items:center;justify-content:center;width:60px;height:60px;background:#25d366;border-radius:50%;color:#fff;text-decoration:none;box-shadow:var(--shadow-lg);transition:all var(--transition-base);animation:whatsapp-pulse 2s infinite}.whatsapp-float a:hover{transform:translateY(-3px);box-shadow:var(--shadow-xl);background:#128c7e}.whatsapp-float svg{width:32px;height:32px}@keyframes whatsapp-pulse{0%{box-shadow:0 0 0 0 rgba(37,211,102,.7)}70%{box-shadow:0 0 0 10px rgba(37,211,102,0)}100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}}@media (max-width:768px){.whatsapp-float{bottom:15px;right:15px}.whatsapp-float a{width:55px;height:55px}.whatsapp-float svg{width:28px;height:28px}}.back-to-top{position:fixed;bottom:20px;left:20px;width:50px;height:50px;background:var(--primary-blue);color:#fff;border:none;border-radius:50%;cursor:pointer;box-shadow:var(--shadow-lg);transition:all var(--transition-base);z-index:999;opacity:0;visibility:hidden;transform:translateY(20px);display:flex;align-items:center;justify-content:center;font-size:18px}.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}.back-to-top:hover{background:var(--accent-teal);transform:translateY(-3px);box-shadow:var(--shadow-xl)}@media (max-width:768px){.back-to-top{width:45px;height:45px;bottom:15px;left:15px;font-size:16px}}.page-hero{padding:10rem 0 4rem;background:linear-gradient(135deg,var(--primary-blue) 0,var(--accent-teal) 100%);color:#fff;text-align:center}.page-hero .hero-title{color:#fff}.page-hero .hero-description{color:#fff;opacity:.9}.page-hero .text-accent{color:var(--accent-teal);text-shadow:0 0 20px rgba(0,161,156,.3)}.page-title{font-size:3rem;font-weight:700;margin-bottom:1.5rem;line-height:1.2}.page-subtitle{font-size:1.25rem;line-height:1.8;max-width:800px;margin:0 auto;opacity:.95}.news-section{padding:5rem 0;background:var(--light-bg)}.news-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem;margin-top:3rem}.news-card{background:#fff;border-radius:var(--radius-xl);box-shadow:var(--card-shadow);overflow:hidden;transition:var(--transition);opacity:0;transform:translateY(30px)}.news-card.animate{opacity:1;transform:translateY(0)}.news-card:hover{transform:translateY(-8px);box-shadow:var(--card-shadow-hover)}.news-image-placeholder{height:200px;background:linear-gradient(135deg,var(--primary-blue) 0,var(--accent-teal) 100%);display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff;position:relative}.news-image-placeholder i{font-size:3rem;margin-bottom:.5rem;opacity:.8}.news-image-placeholder span{font-size:.9rem;opacity:.7;text-transform:uppercase;letter-spacing:.5px}.news-content{padding:2rem}.news-meta{margin-bottom:1rem}.news-date{display:inline-block;background:var(--gray-100);color:var(--gray-600);padding:.25rem .75rem;border-radius:var(--radius-full);font-size:.875rem;font-weight:500}.news-title{font-size:1.25rem;font-weight:600;line-height:1.4;margin-bottom:1rem;color:var(--gray-900)}.news-description{font-size:1rem;line-height:1.6;color:var(--gray-600);margin-bottom:1.5rem}.news-footer{display:flex;justify-content:flex-end;margin-top:auto}.nav-pill.active{background:var(--primary-blue);color:#fff}@media (max-width:1024px){.news-grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}}@media (max-width:768px){.page-hero{padding:8rem 0 3rem}.page-title{font-size:2rem}.page-subtitle{font-size:1.1rem}.news-section{padding:3rem 0}.news-grid{grid-template-columns:1fr;gap:1.5rem;margin-top:2rem}.news-content{padding:1.5rem}.news-title{font-size:1.1rem}.news-description{font-size:.95rem}}.cases{padding:10rem 0 5rem;background:var(--light-bg)}.cases-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-top:3rem}.case-card{background:#fff;border-radius:var(--radius-xl);box-shadow:var(--card-shadow);padding:2rem;transition:var(--transition);display:flex;align-items:center;justify-content:center;min-height:150px;opacity:0;transform:translateY(30px)}.case-card.animate{opacity:1;transform:translateY(0)}.case-card:hover{transform:translateY(-8px);box-shadow:var(--card-shadow-hover)}.case-logo{width:100%;height:auto;display:flex;align-items:center;justify-content:center}.case-logo img{max-width:100%;max-height:80px;height:auto;object-fit:contain;filter:grayscale(100%) opacity(.7);transition:var(--transition)}.case-card:hover .case-logo img{filter:grayscale(0%) opacity(1);transform:scale(1.05)}.cases-stats{margin:5rem 0 3rem;text-align:center}.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:900px;margin:0 auto}.stat-item{background:#fff;padding:2rem 1.5rem;border-radius:var(--radius-xl);box-shadow:var(--card-shadow);transition:var(--transition)}.stat-item:hover{transform:translateY(-5px);box-shadow:var(--card-shadow-hover)}.stat-number{font-size:2.5rem;font-weight:700;color:var(--primary-blue);margin-bottom:.5rem;line-height:1}.stat-label{font-size:1rem;color:var(--gray-600);font-weight:500;line-height:1.4}.cases-cta{margin-top:4rem}.cases-cta .cta-card{background:linear-gradient(135deg,var(--primary-blue) 0,var(--accent-teal) 100%);color:#fff;text-align:center;padding:3rem 2rem;border-radius:var(--radius-2xl);box-shadow:var(--shadow-xl)}@media (max-width:1024px){.cases-grid{grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem}.case-card{padding:1.5rem;min-height:120px}.case-logo img{max-height:60px}}@media (max-width:768px){.cases{padding:8rem 0 3rem}.cases-grid{grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:2rem}.case-card{padding:1rem;min-height:100px}.case-logo img{max-height:50px}.cases-stats{margin:3rem 0 2rem}.stats-grid{grid-template-columns:1fr;gap:1rem}.stat-item{padding:1.5rem}.stat-number{font-size:2rem}.stat-label{font-size:.9rem}.cases-cta .cta-card{padding:2rem 1.5rem}}@media (max-width:480px){.cases-grid{grid-template-columns:1fr}.case-card{min-height:80px}.case-logo img{max-height:40px}.stats-grid{grid-template-columns:1fr;gap:1rem}.stat-item{padding:1.25rem}.stat-number{font-size:1.75rem}.stat-label{font-size:.85rem}}.image-stats-container{display:grid;grid-template-columns:1fr 2fr;gap:3rem;align-items:center;margin:3rem 0}.about-portrait-left{display:flex;justify-content:center;align-items:center}.portrait-image{width:100%;max-width:300px;height:auto;border-radius:15px;box-shadow:0 10px 30px rgba(0,0,0,.15);transition:transform .3s ease}.portrait-image:hover{transform:scale(1.02)}.stats-grid-right{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}@media (max-width:1024px){.image-stats-container{grid-template-columns:1fr;gap:2rem;text-align:center}.stats-grid-right{grid-template-columns:repeat(2,1fr);gap:1rem}.portrait-image{max-width:280px}}@media (max-width:768px){.stats-grid-right{grid-template-columns:1fr;gap:1rem}.portrait-image{max-width:250px}}@media (max-width:480px){.portrait-image{max-width:200px}}.nav-pill.active{background:var(--primary-blue);color:var(--white);box-shadow:var(--shadow-md)}.about-hero{min-height:70vh;display:flex;align-items:center;background:linear-gradient(135deg,var(--light-bg) 0,rgba(0,161,156,.1) 100%);padding-top:5rem;position:relative;overflow:hidden}.about-hero .hero-title{font-size:3.5rem;font-weight:800;letter-spacing:-.02em}.about-hero .floating-card.card-1 .card-icon{background:linear-gradient(135deg,#e74c3c,#c0392b)}.about-hero .floating-card.card-2 .card-icon{background:linear-gradient(135deg,#f39c12,#d68910)}.about-hero .floating-card.card-3 .card-icon{background:linear-gradient(135deg,#27ae60,#229954)}.about-content-section{padding:5rem 0;background:var(--white)}.about-main-content{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}.about-text-content .section-header{text-align:left;margin-bottom:2rem}.about-description p{color:var(--gray-600);margin-bottom:1.5rem;font-size:1.125rem;line-height:1.8}.about-description p:last-child{margin-bottom:0}.about-image-container{position:relative}.image-placeholder{background:var(--light-bg);border:2px dashed var(--gray-300);border-radius:var(--radius-2xl);height:400px;display:flex;align-items:center;justify-content:center;transition:var(--transition)}.image-placeholder:hover{border-color:var(--accent-teal);background:rgba(0,161,156,.05)}.placeholder-content{text-align:center;color:var(--gray-500)}.placeholder-content i{font-size:4rem;color:var(--gray-400);margin-bottom:1rem;display:block}.placeholder-content p{font-size:1rem;font-weight:500}.differentials{padding:5rem 0;background:var(--light-bg)}.differentials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem;margin-top:3rem}.differential-card{background:var(--white);padding:2.5rem;border-radius:var(--radius-2xl);box-shadow:var(--card-shadow);transition:var(--transition);border:1px solid var(--gray-200);position:relative;overflow:hidden;opacity:0;transform:translateY(30px)}.differential-card.animate{opacity:1;transform:translateY(0)}.differential-card:hover{transform:translateY(-10px);box-shadow:var(--card-shadow-hover)}.differential-card.featured{border:2px solid var(--accent-teal);transform:scale(1.02);background:linear-gradient(135deg,var(--white) 0,rgba(0,161,156,.03) 100%)}.differential-card.featured:hover{transform:translateY(-10px) scale(1.02)}.differential-card .featured-badge{position:absolute;top:1.5rem;right:1.5rem;background:linear-gradient(135deg,var(--accent-teal),#20c997);color:var(--white);padding:.375rem .875rem;border-radius:var(--radius-full);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.025em;box-shadow:var(--shadow-sm)}.differential-icon{width:4.5rem;height:4.5rem;background:linear-gradient(135deg,var(--primary-blue),#0056b3);border-radius:var(--radius-2xl);display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;color:var(--white);font-size:1.75rem;transition:var(--transition)}.differential-card:hover .differential-icon{transform:scale(1.1) rotate(5deg)}.differential-card.featured .differential-icon{background:linear-gradient(135deg,var(--accent-teal),#20c997)}.differential-card h3{color:var(--gray-900);font-weight:700;font-size:1.5rem;margin-bottom:1rem;line-height:1.3}.differential-card p{color:var(--gray-600);line-height:1.7;font-size:1rem}.about-hero+.about-content-section+.differentials+.contact{background:var(--white)}.about-hero+.about-content-section+.differentials+.contact .contact-form-container{background:var(--light-bg);border:2px solid var(--gray-100)}.about-hero+.about-content-section+.differentials+.contact .contact-form-container:hover{border-color:var(--accent-teal);box-shadow:0 0 0 4px rgba(0,161,156,.1)}@media (max-width:1024px){.about-main-content{grid-template-columns:1fr;gap:3rem}.about-text-content .section-header{text-align:center}.differentials-grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}}@media (max-width:768px){.about-hero .hero-title{font-size:2.75rem}.about-description p{font-size:1rem}.image-placeholder{height:250px}.placeholder-content i{font-size:2.5rem;margin-bottom:.75rem}.differentials-grid{grid-template-columns:1fr;gap:1.5rem}.differential-card{padding:2rem}.differential-icon{width:4rem;height:4rem;font-size:1.5rem}.differential-card h3{font-size:1.25rem}}@media (max-width:480px){.about-hero .hero-title{font-size:2.25rem}.about-hero .floating-card{display:none}.differential-card{padding:1.5rem}.differential-icon{width:3.5rem;height:3.5rem;font-size:1.25rem}}.differential-card:first-child{animation-delay:.1s}.differential-card:nth-child(2){animation-delay:.2s}.differential-card:nth-child(3){animation-delay:.3s}.differential-card:nth-child(4){animation-delay:.4s}.differential-card:nth-child(5){animation-delay:.5s}.contact-form-container,.differential-card,.image-placeholder{will-change:transform,box-shadow}@media (prefers-reduced-motion:reduce){.differential-card,.floating-card,.image-placeholder{animation:none;transition:none}.differential-card:hover{transform:none}.differential-card:hover .differential-icon{transform:none}}.differential-card:focus-within{outline:2px solid var(--accent-teal);outline-offset:2px}@media print{.about-hero .floating-card,.differential-card .featured-badge{display:none}.differential-card{break-inside:avoid;box-shadow:none;border:1px solid var(--gray-300)}.image-placeholder{border-style:solid;background:var(--white)}}