@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter';
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
.logo-img {
    object-fit: contain;
    width: auto;
    height: 40px;
}
.fixed-top {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}
/* Hero Section */
#hero {
    background-image: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
#hero .container {
    z-index: 1;
}
.gradient-text {
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}
.text-shadow-sm {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.custom-btn {
    background-color: #00bcd4;
    border-color: #00bcd4;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.custom-btn:hover {
    background-color: #00a8bb;
    border-color: #00a8bb;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
.custom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}
.custom-btn:hover::before {
    left: 100%;
}
.product-hero-img {
    border-radius: 15px;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
/* General Section Styling */
section {
    padding: 80px 0;
}
section:nth-of-type(even) {
    background-color: #f8f9fa;
}
section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}
/* Features & Benefits */
.feature-icon {
    font-size: 3rem;
    color: #007bff;
    display: block;
    margin: 0 auto 1rem;
}
.card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* CTA Section Urgency */
.bg-primary {
    background-color: #007bff !important;
}
.custom-btn-alt {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #343a40;
    padding: 0.8rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
}
.custom-btn-alt:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #343a40;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
/* Bonus Section */
.bonus-icon {
    font-size: 2.8rem;
    color: #28a745;
    display: block;
    margin: 0 auto 1rem;
}
/* Second CTA Section */
.bg-gradient-purple {
    background-image: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}
.custom-btn-final {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: #fff;
    padding: 0.9rem 2.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.custom-btn-final:hover {
    background-color: #e66b0e;
    border-color: #e66b0e;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
/* Footer */
footer {
    background-color: #212529 !important;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
footer small {
    display: block;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* Accessibility */
.btn:focus, a:focus {
    outline: 2px solid #007bff;
    outline-offset: 3px;
}
