:root{
    --product-blue:#083f78;
    --product-dark:#062f5c;
    --product-orange:#ff7a3d;
    --product-sea:#8fd3df;
    --product-text:#5f7188;
    --product-border:#e6edf5;
    --product-soft:#f6f9fd;
    --product-white:#ffffff;
}

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    background:#edf4fb;
}

body{
    color:var(--product-text);
}

.miiti-products-page{
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.09), transparent 28%),
        linear-gradient(135deg,#ffffff 0%,#f6fbff 48%,#eef6fb 100%);
}

.products-container{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
}

/* HERO */

.products-hero{
    position:relative;
    padding:110px 0 66px;
}

.products-hero::before{
    content:"";
    position:absolute;
    top:-170px;
    right:-150px;
    width:540px;
    height:540px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(143,211,223,.34), transparent 68%);
    pointer-events:none;
}

.products-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    text-align:center;
    margin:0 auto;
}

.products-tag,
.section-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:34px;
    padding:0 18px;
    border-radius:999px;
    color:var(--product-orange);
    background:rgba(255,122,61,.10);
    border:1px solid rgba(255,122,61,.18);
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:2.4px;
    text-transform:uppercase;
}

.products-hero-content h1{
    margin:20px 0 0;
    color:var(--product-blue);
    font-size:clamp(var(--fs-3xl),4vw,var(--fs-4xl));
    font-weight:var(--fw-bold);
    line-height:var(--lh-tight);
    letter-spacing:-.04em;
}

.products-hero-content p{
    max-width:720px;
    margin:20px auto 0;
    color:var(--product-text);
    font-size:var(--fs-base);
    font-weight:var(--fw-regular);
    line-height:var(--lh-relaxed);
}

/* PRODUCTS */

.products-section{
    padding:20px 0 76px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    align-items:stretch;
    gap:22px;
}

.product-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    height:100%;
    min-height:100%;
    border-radius:30px;
    background:#fff;
    border:1px solid rgba(8,63,120,.08);
    box-shadow:0 16px 38px rgba(8,63,120,.07);
    transition:.32s ease;
}

/* Ortadaki kart artık yukarı çıkmıyor; hepsi aynı hizada */
.product-card.featured{
    transform:none;
    border-color:rgba(255,122,61,.24);
    box-shadow:0 16px 38px rgba(8,63,120,.07);
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 60px rgba(8,63,120,.13);
}

.product-card.featured:hover{
    transform:translateY(-6px);
}

.product-image{
    position:relative;
    height:270px;
    flex:0 0 270px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at center, rgba(143,211,223,.24), transparent 52%),
        linear-gradient(180deg,#ffffff 0%,#f3f8fc 100%);
}

.product-image::after{
    content:"";
    position:absolute;
    left:22px;
    right:22px;
    bottom:0;
    height:1px;
    background:linear-gradient(to right,transparent,rgba(8,63,120,.12),transparent);
}

.product-image img{
    max-width:82%;
    max-height:230px;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 22px 28px rgba(8,63,120,.18));
    transition:.35s ease;
}

.product-card:hover .product-image img{
    transform:translateY(-8px) scale(1.04);
}

.product-image span{
    position:absolute;
    left:20px;
    top:20px;
    min-height:30px;
    display:inline-flex;
    align-items:center;
    padding:0 14px;
    border-radius:999px;
    color:#fff;
    background:linear-gradient(135deg,var(--product-orange),#ff9b66);
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    box-shadow:0 12px 24px rgba(255,122,61,.24);
}

.product-content{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:26px;
}

.product-content h3{
    margin:0;
    color:var(--product-blue);
    font-size:var(--fs-xl);
    font-weight:var(--fw-bold);
    line-height:1.18;
}

.product-content p{
    margin:12px 0 0;
    color:var(--product-text);
    font-size:var(--fs-sm);
    line-height:var(--lh-relaxed);
}

.product-content ul{
    display:grid;
    gap:9px;
    margin:20px 0 0;
    padding:0;
    list-style:none;
}

.product-content li{
    display:flex;
    align-items:center;
    gap:9px;
    color:var(--product-blue);
    font-size:var(--fs-sm);
    font-weight:var(--fw-medium);
}

.product-content li i{
    width:22px;
    height:22px;
    flex:0 0 22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    color:#fff;
    background:var(--product-orange);
    font-size:10px;
}

/* Kart alt sağ buton */

.product-actions{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    margin-top:auto;
    padding-top:24px;
}

.product-detail-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    color:#fff;
    background:linear-gradient(135deg,var(--product-blue),#0a5598);
    text-decoration:none;
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:.2px;
    box-shadow:0 12px 26px rgba(8,63,120,.18);
    transition:.28s ease;
}

.product-detail-btn i{
    font-size:11px;
    transition:.28s ease;
}

.product-detail-btn:hover{
    color:#fff;
    background:linear-gradient(135deg,var(--product-orange),#ff9b66);
    transform:translateY(-3px);
    box-shadow:0 16px 30px rgba(255,122,61,.24);
}

.product-detail-btn:hover i{
    transform:translateX(3px);
}

/* SPECS */

.specs-section{
    padding:0 0 80px;
}

.specs-card{
    overflow:hidden;
    border-radius:32px;
    background:#fff;
    border:1px solid rgba(8,63,120,.08);
    box-shadow:0 24px 60px rgba(8,63,120,.10);
}

.specs-head{
    padding:38px 38px 26px;
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.10), transparent 34%),
        linear-gradient(135deg,#ffffff 0%,#f7fbff 100%);
}

.specs-head h2{
    margin:16px 0 0;
    color:var(--product-blue);
    font-size:clamp(var(--fs-2xl),3vw,var(--fs-3xl));
    font-weight:var(--fw-bold);
    line-height:1.16;
    letter-spacing:-.035em;
}

.specs-head p{
    max-width:650px;
    margin:14px 0 0;
    color:var(--product-text);
    font-size:var(--fs-base);
    line-height:var(--lh-relaxed);
}

.table-responsive{
    width:100%;
    overflow-x:auto;
}

.tech-table{
    width:100%;
    border-collapse:collapse;
    min-width:820px;
}

.tech-table th{
    padding:18px 20px;
    text-align:left;
    color:#fff;
    background:var(--product-blue);
    font-size:var(--fs-sm);
    font-weight:var(--fw-semibold);
    letter-spacing:.4px;
    text-transform:uppercase;
}

.tech-table th:not(:first-child){
    text-align:center;
}

.tech-table td{
    padding:18px 20px;
    border-bottom:1px solid rgba(8,63,120,.07);
    color:var(--product-text);
    font-size:var(--fs-sm);
    font-weight:var(--fw-medium);
}

.tech-table td:not(:first-child){
    text-align:center;
    color:var(--product-blue);
    font-weight:var(--fw-semibold);
}

.tech-table td:first-child{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--product-blue);
}

.tech-table td:first-child i{
    width:30px;
    height:30px;
    flex:0 0 30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    color:var(--product-orange);
    background:rgba(255,122,61,.10);
    font-size:var(--fs-xs);
}

.tech-table tr:hover td{
    background:#f8fbff;
}

.tech-table .highlight{
    color:var(--product-orange) !important;
}

/* CTA */

.products-cta{
    padding:0 0 80px;
}

.products-cta-box{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:44px;
    border-radius:30px;
    color:#fff;
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.24), transparent 30%),
        linear-gradient(135deg,#083f78,#0a5598);
    box-shadow:0 26px 68px rgba(8,63,120,.20);
}

.products-cta-box span{
    display:inline-block;
    margin-bottom:10px;
    color:#ffb089;
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:2px;
    text-transform:uppercase;
}

.products-cta-box h2{
    margin:0;
    color:#fff;
    font-size:var(--fs-3xl);
    font-weight:var(--fw-bold);
    line-height:1.18;
    letter-spacing:-.035em;
}

.products-cta-box p{
    max-width:650px;
    margin:12px 0 0;
    color:rgba(255,255,255,.78);
    font-size:var(--fs-base);
    line-height:var(--lh-relaxed);
}

.products-cta-box a{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:14px 22px;
    border-radius:999px;
    color:var(--product-blue);
    background:#fff;
    text-decoration:none;
    font-size:var(--fs-sm);
    font-weight:var(--fw-semibold);
    transition:.28s ease;
}

.products-cta-box a:hover{
    transform:translateY(-4px);
    color:#fff;
    background:var(--product-orange);
}

/* RESPONSIVE */

@media(max-width:1100px){
    .products-grid{
        grid-template-columns:1fr;
    }

    .product-card,
    .product-card.featured{
        transform:none;
    }

    .product-card:hover,
    .product-card.featured:hover{
        transform:translateY(-6px);
    }

    .products-cta-box{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:700px){
    .products-container{
        width:min(100% - 28px,1180px);
    }

    .products-hero{
        padding:95px 0 50px;
    }

    .products-section{
        padding-bottom:60px;
    }

    .product-image{
        height:240px;
        flex-basis:240px;
    }

    .product-image img{
        max-height:200px;
    }

    .product-content{
        padding:22px;
    }

    .product-actions{
        justify-content:flex-start;
        padding-top:22px;
    }

    .product-detail-btn{
        width:100%;
        min-height:44px;
    }

    .specs-head{
        padding:28px 22px 22px;
    }

    .products-cta-box{
        padding:30px 24px;
        border-radius:24px;
    }

    .products-cta-box h2{
        font-size:var(--fs-2xl);
    }

    .products-cta-box a{
        width:100%;
    }
}