/* GETT Tools - Performance Optimized CSS */

/* Core Layout & Typography */
*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
    background:#fff;
    color:#2c3e50;
    line-height:1.6;
    font-size:16px;
    padding-top:120px;
    font-display:swap
}

/* Navigation */
.navbar{
    background:#fff!important;
    border-bottom:2px solid #f8f9fa;
    padding:1.25rem 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:fixed;
    top:0;
    width:100%;
    z-index:1030;
    height:120px;
    contain:layout style paint
}

.navbar-brand{
    color:#2c3e50!important;
    font-weight:800;
    font-size:1.75rem;
    text-decoration:none
}

.navbar-brand:hover{color:#dc3545!important}

.navbar-nav .nav-link{
    color:#2c3e50!important;
    font-weight:600;
    margin:0 1.25rem;
    font-size:1.1rem;
    transition:color 0.2s ease
}

.navbar-nav .nav-link:hover,.navbar-nav .nav-link.active{
    color:#dc3545!important
}

/* Buttons */
.btn{
    border-radius:8px;
    font-weight:600;
    transition:all 0.2s ease;
    text-decoration:none
}

.btn-danger{
    background:#dc3545;
    border-color:#dc3545;
    color:#fff
}

.btn-danger:hover{
    background:#c82333;
    border-color:#c82333;
    transform:translateY(-1px)
}

.btn-outline-primary{
    border:2px solid #dc3545;
    color:#dc3545
}

.btn-outline-primary:hover{
    background:#dc3545;
    color:#fff
}

/* Hero Section */
.hero-section{
    height:60vh;
    min-height:500px;
    display:flex;
    align-items:center;
    position:relative;
    contain:layout style paint
}

.hero-title{
    font-size:3.5rem;
    font-weight:900;
    color:#fff;
    text-shadow:2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom:1rem;
    line-height:1.1
}

/* Section Cards */
.section-card{
    height:450px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    contain:layout style paint
}

.section-card h2{
    font-size:2.5rem;
    font-weight:800;
    margin-bottom:1rem
}

/* Cards */
.card{
    border:none;
    border-radius:12px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    transition:transform 0.2s ease;
    overflow:hidden;
    contain:layout style paint
}

.card:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 30px rgba(0,0,0,0.12)
}

.card-body{
    padding:1.5rem
}

.card-title{
    font-size:1.25rem;
    font-weight:700;
    color:#2c3e50;
    margin-bottom:0.75rem
}

/* Product Cards */
.product-card{
    min-height:400px;
    contain:layout style paint
}

/* Images */
img{
    max-width:100%;
    height:auto;
    display:block
}

/* Responsive */
@media (max-width:768px){
    .hero-title{font-size:2.5rem}
    .section-card{height:350px;padding:2rem!important}
    .section-card h2{font-size:2rem}
}

/* Container Performance */
.container,.container-fluid{
    contain:layout style
}

/* Social Proof */
.social-proof-banner{
    background:#198754!important;
    color:#fff;
    border-radius:8px;
    padding:0.5rem 1rem;
    font-size:0.9rem;
    margin-bottom:1rem
}

/* Trust Badges */
.trust-badge{
    background:#f8f9fa;
    border:1px solid #dee2e6;
    border-radius:8px;
    padding:1rem;
    text-align:center;
    transition:transform 0.2s ease
}

.trust-badge:hover{
    transform:translateY(-1px)
}

/* Performance Optimizations */
.lazy-load{
    opacity:0;
    transition:opacity 0.3s ease
}

.lazy-load.loaded{
    opacity:1
}

/* Video Section */
.video-section-clickable{
    background-size:cover;
    background-position:center;
    cursor:pointer;
    transition:transform 0.2s ease;
    contain:layout style paint
}

.video-section-clickable:hover{
    transform:scale(1.02)
}

/* Footer */
.footer{
    background:#2c3e50;
    color:#fff;
    padding:2rem 0
}

.footer a{
    color:#17a2b8;
    text-decoration:none
}

.footer a:hover{
    color:#fff
}