* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Sora', sans-serif;
    background: #ffffff;
    color: #1d1d1f;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: #666;
    font-weight: 400;
    font-size: 16px;
}


/* ==========================
   PREMIUM NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    transition:.35s ease;

    background:transparent;

}

.navbar.scrolled{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(18px);

    box-shadow:0 8px 40px rgba(0,0,0,.08);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.nav-container{

    max-width:1280px;

    height:82px;

    margin:auto;

    padding:0 32px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo img{
    display: block;
    width: auto;
    height: 50px;
}

.logo-igarden {
    height: 36px;
}

.logo-fairland {
    height: 36px;
}

.logo span{

    font-weight:300;

}


.navbar.scrolled .logo{

    color:#0071e3;

}

.nav-menu{

    display:flex;

    gap:42px;

    list-style:none;

    margin-left:auto;

    margin-right:40px;

}

.nav-menu a{

    color:white;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    transition:.25s;

    position:relative;

}

.navbar.scrolled .nav-menu a{

    color:#1d1d1f;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:#3da8ff;

    transition:.3s;

}

.nav-menu a:hover::after{

    width:100%;

}

.nav-menu a:hover{

    color:#59b8ff;

}

.navbar.scrolled .nav-menu a:hover{

    color:#0071e3;

}

.cta-nav{

    background:#1b84ff;

    color:white;

    border:none;

    border-radius:999px;

    padding:13px 26px;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.cta-nav:hover{

    transform:translateY(-2px);

    box-shadow:0 15px 35px rgba(0,113,227,.35);

}

/* Hero Section */

.hero{

    position:relative;

    min-height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

    background:

        linear-gradient(
            rgba(5,22,38,.60),
            rgba(5,22,38,.35)
        ),

        url("images/fundal-igarden.png");

    background-size:cover;

    background-position:center;
}

.hero-overlay{

    position:absolute;

    inset:0;

    backdrop-filter:blur(1px);

    background:

        radial-gradient(circle at right,
        rgba(0,0,0,.05),
        rgba(0,0,0,.25));
}

.hero-content{

    width:1200px;

    margin:auto;

    padding:120px 40px;

    position:relative;

    z-index:5;
}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    color:white;

    backdrop-filter:blur(15px);

    margin-bottom:30px;

    letter-spacing:1px;

    font-size:14px;
}

.hero-title{

    color:white;

    font-size:72px;

    line-height:1.05;

    max-width:650px;

    font-weight:700;
}

.hero-title span{

    color:#48b7ff;
}

.hero-subtitle{

    margin-top:25px;

    color:rgba(255,255,255,.9);

    font-size:23px;

    line-height:1.7;

    max-width:650px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;
}

.hero-pump{

    position:absolute;

    right:6%;

    bottom:0;

    height:88%;

    z-index:3;

    filter:

        drop-shadow(0 40px 80px rgba(0,0,0,.45));
}

.hero-features{

    display:flex;

    gap:30px;

    margin-top:55px;

    color:white;

    font-size:15px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.btn-primary {
    background: #0071e3;
    color: white;
}

.btn-primary:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0071e3;
    border: 2px solid #0071e3;
}

.btn-secondary:hover {
    background: #0071e3;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Despre Section */
.despre {
    padding: 100px 20px;
    background: #ffffff;
}

.despre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.despre-content {
    animation: fadeInLeft 0.8s ease;
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    color: #1d1d1f;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.despre-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.despre-list {
    list-style: none;
}

.despre-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    font-size: 15px;
}

.despre-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0071e3;
    font-weight: bold;
    font-size: 18px;
}

.despre-visual {
    animation: fadeInRight 0.8s ease;
}

.visual-box {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0071e3 0%, #00a8e8 100%);
}

/* Features Grid */
.caracteristici {
    padding: 100px 20px;
    background: #f5f5f7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #0071e3;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Modele Section */
.modele {
    padding: 100px 20px;
    background: white;
}

.models-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.model-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.model-card.featured {
    border: 2px solid #0071e3;
    transform: scale(1.02);
}

.model-badge {
    display: inline-block;
    background: #f5f5f7;
    color: #666;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.model-badge.featured-badge {
    background: #0071e3;
    color: white;
}

.model-card h3 {
    font-size: 24px;
    margin: 15px 0;
    color: #1d1d1f;
}

.model-power {
    font-size: 32px;
    font-weight: 700;
    color: #0071e3;
    margin-bottom: 30px;
}

.model-specs {
    margin: 30px 0;
    text-align: left;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 14px;
}

.spec-label {
    color: #666;
    font-weight: 500;
}

.spec-value {
    color: #1d1d1f;
    font-weight: 600;
}

.btn-model {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #0071e3;
    color: #0071e3;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-model:hover {
    background: #0071e3;
    color: white;
}

.btn-model.primary {
    background: #0071e3;
    color: white;
    border-color: #0071e3;
}

.btn-model.primary:hover {
    background: #0066cc;
    border-color: #0066cc;
}

/* Beneficii */
.beneficii {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0071e3 0%, #00a8e8 100%);
}

.beneficii h2 {
    color: white;
}

.beneficii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-box {
    text-align: center;
    color: white;
    animation: fadeInUp 0.6s ease;
}

.benefit-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.benefit-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.benefit-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.7;
}

/* Specs Section */
.specs-section {
    padding: 100px 20px;
    background: #f5f5f7;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.spec-column {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.spec-column h3 {
    font-size: 18px;
    color: #0071e3;
    margin-bottom: 25px;
}

.spec-column ul {
    list-style: none;
}

.spec-column li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.spec-column li span:first-child {
    color: #666;
    font-weight: 500;
}

.spec-column li span:last-child {
    color: #1d1d1f;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: white;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

.contact-form {
    background: #f5f5f7;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.info-item {
    padding: 20px;
}

.info-label {
    display: block;
    color: #666;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-item a {
    color: #0071e3;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #0066cc;
}

.info-item p {
    font-weight: 600;
    font-size: 16px;
    color: #1d1d1f;
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .despre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visual-box {
        height: 300px;
    }
    
    .models-showcase {
        grid-template-columns: 1fr;
    }
    
    .model-card.featured {
        transform: scale(1);
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .beneficii-grid {
        gap: 20px;
    }
    
    .benefit-number {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .cta-nav {
        display: none;
    }
    
    .hero {
        padding: 120px 15px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .spec-column {
        padding: 25px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}