/* ============================================
   TECNO-IN NEW DESIGN - Service Key Group Inspired
   Color Scheme: Tecnoin Branding
   Primary: #0099CC (Teal/Cyan)
   Secondary: #00537f (Dark Blue)
   Accent: #28C77A (Green)
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0099CC;
    --primary-dark: #007aa3;
    --secondary: #00537f;
    --accent: #28C77A;
    --accent-hover: #22a865;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #737373;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f5f5;
    --border-color: #e5e5e5;
    --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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 112px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-large {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 16px;
}

.gap-8 {
    gap: 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--bg-light);
}

/* ============================================
   TOP BAR MINIMAL (servicekeygroup style)
   ============================================ */
.top-bar-minimal {
    background-color: transparent;
    color: var(--text-muted);
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar-minimal-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-minimal-links {
    display: flex;
    gap: 20px;
}

.top-bar-minimal-links a {
    color: var(--text-muted);
    font-size: 12px;
}

.top-bar-minimal-links a:hover {
    color: var(--primary);
}

/* ============================================
   MAIN NAVIGATION GLASS (Glassmorphism style)
   ============================================ */
.main-nav-glass {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.main-nav-glass-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.main-nav-glass .nav-logo img {
    height: 45px;
    width: auto;
}

.main-nav-glass .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav-glass .nav-item {
    position: relative;
}

.main-nav-glass .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
}

.main-nav-glass .nav-link:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.main-nav-glass .nav-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.main-nav-glass .nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

.main-nav-glass .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.main-nav-glass .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav-glass .dropdown-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.main-nav-glass .dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main-nav-glass .dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.main-nav-glass .dropdown-link:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.main-nav-glass .dropdown-link svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: all 0.2s ease;
}

.main-nav-glass .dropdown-link:hover svg {
    opacity: 1;
    transform: translateX(4px);
}

.main-nav-glass .nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-nav-glass .nav-cta .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* ============================================
   HERO CENTERED (servicekeygroup style)
   ============================================ */
.hero-centered {
    position: relative;
    min-height: 830px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    padding-top: 120px;
}

.hero-centered-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-city-illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    opacity: 0.15;
}

.city-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 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='%2300537f' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-centered-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-centered {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 153, 204, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge-centered svg {
    width: 16px;
    height: 16px;
}

.hero-title-centered {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-title-centered .accent {
    color: var(--accent);
}

.hero-description-centered {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Search Box */
.hero-search-wrapper {
    margin-bottom: 32px;
}

.hero-search-box {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.hero-search-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.hero-search-input::placeholder {
    color: var(--text-muted);
}

.hero-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: var(--accent);
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin: 6px;
    border-radius: 8px;
}

.hero-search-btn:hover {
    background-color: var(--accent-hover);
}

/* Hero Quick Actions */
.hero-quick-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.quick-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.quick-action-btn:hover {
    background-color: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   STATISTICS SECTION DARK
   ============================================ */
.stats-section-dark {
    background-color: rgb(10, 10, 10);
    padding: 80px 0;
    color: white;
}

.stats-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stats-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.stats-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.stats-carousel {
    display: flex;
    gap: 48px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.stats-carousel::-webkit-scrollbar {
    display: none;
}

.stat-carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    text-align: center;
}

.stat-number-dark {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-dark {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CERTIFICATIONS SECTION LIGHT
   ============================================ */
.certifications-section-light {
    background-color: rgba(242, 242, 242, 0.3);
    padding: 64px 0;
}

.certifications-header {
    text-align: center;
    margin-bottom: 40px;
}

.certifications-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.certifications-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.certifications-carousel::-webkit-scrollbar {
    display: none;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    padding: 20px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.certification-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 153, 204, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.certification-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
}

/* ============================================
   INTEGRATED MODEL SECTION
   ============================================ */
.integrated-model-section {
    background-color: white;
    padding: 60px 0;
}

.integrated-model-header {
    text-align: center;
    margin-bottom: 48px;
}

.integrated-model-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.integrated-model-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.integrated-model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.integrated-column-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.integrated-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.integrated-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid transparent;
}

.integrated-link:hover {
    color: var(--primary);
}

.integrated-link svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: all 0.2s ease;
}

.integrated-link:hover svg {
    opacity: 1;
    transform: translateX(4px);
}

.integrated-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-action-large {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.quick-action-large:hover {
    background-color: rgba(0, 153, 204, 0.1);
    color: var(--primary);
}

.quick-action-large svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* ============================================
   CTA SECTION NEW
   ============================================ */
.cta-section-new {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content-new {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

.cta-title-new {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 16px;
}

.cta-description-new {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons-new {
    display: flex;
    gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #0a1628;
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links a svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: all 0.2s ease;
}

.footer-links a:hover svg {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   FOOTER NEW (servicekeygroup style)
   ============================================ */
.footer-new {
    background-color: #0a1628;
    color: white;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-logo-new {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
}

.footer-newsletter-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: white;
    font-size: 14px;
    min-width: 250px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 12px 24px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--accent-hover);
}

.footer-social-new {
    display: flex;
    gap: 12px;
}

.footer-social-new a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-new a:hover {
    background-color: var(--primary);
}

.footer-social-new svg {
    width: 20px;
    height: 20px;
}

/* Main Footer */
.footer-main {
    padding: 64px 0;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
}

.footer-column-new h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: white;
}

.footer-links-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-new a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links-new a:hover {
    color: white;
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

.footer-bottom-content {
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    color: var(--accent);
    font-weight: 500;
}

.footer-copyright-new {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .integrated-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title-centered {
        font-size: 44px;
    }
    
    .hero-description-centered {
        font-size: 16px;
    }
    
    .hero-quick-actions {
        gap: 8px;
    }
    
    .quick-action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .stats-carousel {
        gap: 32px;
    }
    
    .stat-number-dark {
        font-size: 36px;
    }
    
    .cta-content-new {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons-new {
        justify-content: center;
    }
    
    .footer-newsletter-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar-minimal {
        display: none;
    }
    
    .main-nav-glass {
        top: 0;
    }
    
    .hero-centered {
        min-height: 700px;
        padding-top: 100px;
    }
    
    .hero-title-centered {
        font-size: 36px;
    }
    
    .hero-search-box {
        flex-direction: column;
    }
    
    .hero-search-input {
        width: 100%;
    }
    
    .hero-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats-section-dark {
        padding: 60px 0;
    }
    
    .stats-nav-btn {
        display: none;
    }
    
    .stat-number-dark {
        font-size: 28px;
    }
    
    .stat-label-dark {
        font-size: 12px;
    }
    
    .integrated-model-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-title-new {
        font-size: 28px;
    }
    
    .cta-buttons-new {
        flex-direction: column;
    }
    
    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .footer-company-info {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title-centered {
        font-size: 28px;
    }
    
    .footer-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav-glass .nav-menu {
        display: none;
    }
}

/* ============================================
   PAGE HEADER CENTERED
   ============================================ */
.page-header-centered {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 153, 204, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.page-header-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    background-color: white;
    padding: 80px 0;
}

.content-section-gray {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 48px;
}

.section-title-centered {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title-centered .accent {
    color: var(--accent);
}

.section-description-centered {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.content-left {
    max-width: 560px;
}

.section-badge-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 153, 204, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title-left {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title-left .accent {
    color: var(--accent);
}

.section-description-left {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.image-right img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   CERTIFICATIONS GRID
   ============================================ */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.certification-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.certification-card-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-card-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

.certification-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.certification-card-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.certification-card-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(0, 153, 204, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   DOWNLOAD LIST
   ============================================ */
.download-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.download-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 153, 204, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    color: var(--primary);
}

.download-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.download-text p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   FORM CONTAINER
   ============================================ */
.form-container {
    position: relative;
}

.form-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background-color: white;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}

.form-textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background-color: white;
    resize: vertical;
    transition: var(--transition);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox input {
    margin-top: 2px;
}

.text-link {
    color: var(--primary);
}

.text-link:hover {
    text-decoration: underline;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.map-placeholder svg {
    margin: 0 auto 16px;
    opacity: 0.5;
}

.map-placeholder p {
    font-size: 16px;
    margin-bottom: 8px;
}

.map-placeholder span {
    font-size: 14px;
}

/* ============================================
   CARDS GRID
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 153, 204, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.info-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-card-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE FOR INNER PAGES
   ============================================ */
@media (max-width: 1024px) {
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .content-left {
        max-width: 100%;
    }
    
    .certifications-grid,
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header-title {
        font-size: 36px;
    }
    
    .section-title-centered,
    .section-title-left {
        font-size: 28px;
    }
    
    .certifications-grid,
    .cards-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .download-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .two-column-grid.reverse {
        direction: ltr;
    }
}

/* ============================================
   ADDITIONAL CHI-SIAMO STYLES
   ============================================ */
.section-badge-centered {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 153, 204, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.floating-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: white;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.floating-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.floating-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.image-right {
    position: relative;
}

/* Quote Section */
.quote-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    padding: 0 40px;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 48px;
    color: var(--accent);
    position: absolute;
    opacity: 0.3;
}

.quote-text::before {
    left: 0;
    top: -10px;
}

.quote-text::after {
    right: 0;
    bottom: -30px;
}

.quote-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Two Column Reverse */
.two-column-grid.reverse {
    direction: rtl;
}

.two-column-grid.reverse > * {
    direction: ltr;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 153, 204, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.value-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-xl);
}

.team-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 32px;
}


