:root{
    --primary:#16096b;
    --primary-dark:#0f0647;
    --navy:#14213b;
    --navy2:#1c2541;
    --text:#111111;
    --muted:#475569;
    --bg:#ffffff;
    --soft:#f6f7fb;
    --line:#e7e8ee;
    --card:#ffffff;
    --container:1420px;
    --shadow:0 12px 35px rgba(15,23,42,.08);
}

*{box-sizing:border-box}
html{
    scroll-behavior:smooth;
    max-width:100%;
    overflow-x:hidden;
}
body{
    margin:0;
    font-family:Manrope,sans-serif;
    background:var(--bg);
    color:var(--text);
    max-width:100%;
    overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
    width:min(var(--container),calc(100% - 34px));
    margin:0 auto;
}

.section{
    padding:72px 0;
    position:relative;
    background:#ffffff;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:60px;
    padding:0 26px;
    border-radius:16px;
    font-weight:800;
    transition:.25s;
    cursor:pointer;
    border:none;
}

.btn.primary{
    background:var(--primary);
    color:#fff;
    box-shadow:0 14px 30px rgba(22,9,107,.18);
}
.btn.primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

.btn.outline{
    border:2px solid var(--primary);
    color:var(--primary);
    background:#fff;
}
.btn.outline:hover{
    background:var(--primary);
    color:#fff;
}

.topbar{
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:10px 14px;
    font-weight:700;
}

.header{
    position:sticky;
    top:0;
    z-index:90;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(20,33,59,.08);
}

.header-inner{
    min-height:84px;
    display:grid;
    grid-template-columns:240px 1fr 320px;
    gap:18px;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--primary);
    font-size:28px;
    font-weight:800;
}

.logo-mark{
    width:42px;
    height:42px;
    border:4px solid var(--primary);
    border-left-color:transparent;
    border-bottom-color:transparent;
    transform:rotate(-45deg);
    position:relative;
}

.logo-mark:before{
    content:"";
    position:absolute;
    left:8px;
    top:8px;
    width:16px;
    height:16px;
    border:4px solid var(--primary);
    border-left-color:transparent;
    border-bottom-color:transparent;
}

.nav{
    display:flex;
    justify-content:center;
    gap:26px;
    color:var(--navy);
    font-weight:700;
    font-size:17px;
}

.nav a{
    position:relative;
    padding:8px 0;
}

.nav a:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.25s;
}
.nav a:hover:after,
.nav a.active:after{
    width:100%;
}

.nav-item{position:relative}

.nav-item.has-children>.sub{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    color:var(--text);
    min-width:220px;
    border-radius:14px;
    padding:10px;
    box-shadow:var(--shadow);
    border:1px solid #eceff5;
}

.nav-item.has-children:hover>.sub{display:block}

.sub a{
    display:block;
    padding:10px 12px;
    border-radius:10px;
}
.sub a:hover{
    background:#f6f7fb;
}

.head-contact{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:14px;
    color:var(--navy);
}

.call-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:26px;
    text-decoration:none;
    position:relative;
    flex:0 0 auto;
    overflow:visible;
}

.call-icon-desktop,.call-icon-mobile,.call-icon-count{line-height:1}.call-icon-desktop,.call-icon-mobile{display:grid;place-items:center}.call-icon-mobile,.call-icon-count{display:none}
.call-icon-desktop svg,.call-icon-mobile svg{width:24px;height:24px;display:block;fill:currentColor}

.phone-list{
    display:grid;
    gap:4px;
    font-weight:800;
    font-size:18px;
    color:var(--navy);
}

.mobile-toggle{
    display:none;
    width:42px;
    height:42px;
    border:0;
    border-radius:10px;
    background:var(--primary);
    color:#fff;
    font-size:20px;
}

.mobile-nav{
    display:none;
    border-top:1px solid rgba(20,33,59,.08);
    background:#fff;
}
.mobile-nav.open{display:block}
.mobile-nav a{
    display:block;
    padding:14px 16px;
    color:var(--navy);
    font-weight:700;
    border-bottom:1px solid #eef1f5;
}

.hero{
    position:relative;
    min-height:760px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        linear-gradient(rgba(10,10,10,.45),rgba(10,10,10,.45)),
        radial-gradient(circle at 20% 30%, rgba(22,9,107,.10), transparent 28%),
        linear-gradient(105deg,#454a53 0%,#303640 38%,#51545b 100%);
}

.hero-visual{
    position:absolute;
    right:5%;
    top:10%;
    width:44%;
    height:74%;
}

.hero-visual .wall{
    position:absolute;
    inset:0;
    border-radius:28px;
    background:linear-gradient(165deg,rgba(255,255,255,.09),rgba(255,255,255,.02));
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}

.hero-visual .main{
    position:absolute;
    left:12%;
    top:12%;
    width:56%;
    height:48%;
    border:10px solid #252525;
    box-shadow:0 0 0 8px rgba(22,9,107,.24);
    background:linear-gradient(135deg,#16096b,#4338ca,#111827 74%);
}

.hero-visual .sub{
    position:absolute;
    right:10%;
    bottom:14%;
    width:52%;
    height:22%;
    border:8px solid #303030;
    background:linear-gradient(135deg,#0f172a,#334155,#16096b);
}

.hero-visual .desk{
    position:absolute;
    left:14%;
    bottom:11%;
    width:58%;
    height:6%;
    background:linear-gradient(90deg,#181d27,#2c3442);
    transform:skewX(-20deg);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:920px;
    margin:0 auto;
    padding:84px 0;
}

.play{
    width:94px;
    height:94px;
    border-radius:50%;
    margin:0 auto 26px;
    background:var(--primary);
    display:grid;
    place-items:center;
    box-shadow:0 0 0 16px rgba(22,9,107,.12);
}
.play:before{
    content:"";
    margin-left:8px;
    border-left:28px solid #fff;
    border-top:18px solid transparent;
    border-bottom:18px solid transparent;
}

.hero h1{
    margin:0 0 18px;
    font-size:86px;
    line-height:.98;
    letter-spacing:-2.4px;
    color:#fff;
}

.hero p{
    margin:0 auto 34px;
    max-width:980px;
    font-size:23px;
    line-height:1.55;
    color:rgba(255,255,255,.92);
}

.hero-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.grid-2{
    display:grid;
    grid-template-columns:1.02fr 1.1fr;
    gap:58px;
    align-items:center;
}

.about-visual{
    position:relative;
    min-height:740px;
    display:grid;
    place-items:center;
}

.circle{
    width:min(100%,720px);
    aspect-ratio:1/1;
    border-radius:50%;
    background:var(--primary);
    display:grid;
    place-items:center;
    box-shadow:var(--shadow);
}

.circle-text{
    font-size:118px;
    line-height:.95;
    color:#fff;
    font-weight:800;
    text-align:center;
}

.exp,
.exp-badge{
    position:absolute;
    right:36px;
    bottom:56px;
    background:#fff;
    border:3px solid var(--primary);
    border-radius:42px 42px 0 42px;
    padding:22px 32px;
    display:flex;
    gap:18px;
    align-items:center;
    box-shadow:var(--shadow);
}

.exp strong,
.exp-badge strong{
    font-size:64px;
    line-height:1;
    color:var(--primary);
}

.exp span,
.exp-badge span{
    font-size:22px;
    color:#536277;
    font-weight:700;
}

.title-xl{
    margin:0 0 24px;
    font-size:58px;
    line-height:1.06;
    color:var(--navy);
    font-weight:800;
    letter-spacing:-1px;
}

.title-xl .accent,
.section-head .accent{
    color:var(--primary);
}

.text-lg{
    margin:0 0 24px;
    color:var(--muted);
    font-size:21px;
    line-height:1.82;
}

.bullet-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px 40px;
}

.bullet{
    display:flex;
    gap:14px;
    align-items:flex-start;
    font-size:19px;
    color:#334155;
}

.bullet:before{
    content:"";
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--primary);
    margin-top:10px;
    flex:0 0 auto;
}

.feature-row{
    display:grid;
    grid-template-columns:.97fr 1.03fr;
    gap:56px;
    align-items:stretch;
    margin-bottom:82px;
}

.feature-row.reverse{
    grid-template-columns:1.03fr .97fr;
}

.feature-row.reverse .copy{order:2}
.feature-row.reverse .media{order:1}

.copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.feature-title{
    margin:0 0 28px;
    color:var(--navy);
    font-size:76px;
    line-height:1.02;
    letter-spacing:-2px;
    font-weight:800;
}

.tags{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.tag{
    min-width:190px;
    height:88px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:0 20px;
    border-radius:20px;
    border:3px solid var(--primary);
    background:#fff;
    font-size:22px;
    font-weight:800;
    color:var(--navy);
}

.media{
    min-height:740px;
    position:relative;
    overflow:hidden;
    border-radius:12px;
    box-shadow:var(--shadow);
    background:linear-gradient(135deg,#d5dde8,#bac6d6);
}

.media:before{
    content:"";
    position:absolute;
    inset:0;
    background:repeating-linear-gradient(45deg,rgba(22,9,107,.07) 0 22px, transparent 22px 76px);
}

.media.inner:after{
    content:"";
    position:absolute;
    left:16%;
    top:9%;
    width:58%;
    height:64%;
    border:14px solid #202833;
    background:linear-gradient(135deg,#16096b,#4338ca,#60a5fa);
    box-shadow:0 0 0 10px rgba(255,255,255,.22);
}

.media.outer:after{
    content:"";
    position:absolute;
    left:17%;
    bottom:11%;
    width:55%;
    height:45%;
    border:12px solid #3a4250;
    background:linear-gradient(135deg,#16096b,#4338ca,#111827);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.benefits{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.benefit{
    background:#fff;
    padding:32px 28px;
    border-radius:24px;
    border:1px solid #e7eaf0;
}

.benefit h3{
    margin:0 0 10px;
    font-size:24px;
    color:var(--navy);
}

.benefit p{
    margin:0;
    font-size:18px;
    color:var(--muted);
    line-height:1.6;
}

.iconbox{
    width:74px;
    height:74px;
    border-radius:20px;
    background:var(--primary);
    display:grid;
    place-items:center;
    color:#fff;
    font-size:34px;
    margin-bottom:18px;
}

.section-head{
    text-align:center;
    margin-bottom:30px;
}

.section-head h2{
    margin:0;
    color:var(--navy);
    font-size:82px;
    line-height:1;
    letter-spacing:-2px;
    font-weight:800;
}

.section-head p{
    max-width:980px;
    margin:18px auto 0;
    color:var(--muted);
    font-size:21px;
    line-height:1.7;
}

.card-grid.products{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:34px;
}
.card-grid.posts,
.card-grid.projects,
.simple-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

.product-card,
.project-card,
.post-card,
.mini-card,
.testimonial{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 6px 24px rgba(15,23,42,.06);
    border:1px solid #ececf1;
}

.product-thumb,
.project-thumb,
.hero-thumb{
    height:320px;
    background:linear-gradient(135deg,#dbeafe,#cbd5e1);
    position:relative;
}

.product-thumb.panel:before{
    content:"";
    position:absolute;
    left:8%;
    top:16%;
    width:84%;
    height:66%;
    background:linear-gradient(135deg,#111827,#1f2937);
    transform:skewY(-7deg);
}
.product-thumb.panel:after{
    content:"";
    position:absolute;
    left:12%;
    top:20%;
    width:74%;
    height:56%;
    background:linear-gradient(135deg,#16096b,#4338ca,#818cf8);
}
.product-thumb.screen:before{
    content:"";
    position:absolute;
    left:10%;
    top:14%;
    width:80%;
    height:62%;
    border:8px solid #cbd5e1;
    background:linear-gradient(135deg,#1e293b,#0f172a);
}
.product-thumb.screen:after{
    content:"";
    position:absolute;
    left:13%;
    top:17%;
    width:74%;
    height:56%;
    background:linear-gradient(135deg,#16096b,#4338ca,#60a5fa);
}
.product-thumb.device:before{
    content:"";
    position:absolute;
    left:12%;
    top:42%;
    width:76%;
    height:10%;
    background:#111827;
    border-radius:10px;
    box-shadow:0 62px 0 #1f2937;
}
.product-thumb.outer:before{
    content:"";
    position:absolute;
    left:18%;
    bottom:16%;
    width:58%;
    height:42%;
    background:#222;
    border:10px solid #555;
}
.product-thumb.outer:after{
    content:"";
    position:absolute;
    left:22%;
    bottom:20%;
    width:50%;
    height:34%;
    background:linear-gradient(135deg,#16096b,#4338ca,#111827);
}

.card-body{
    padding:24px;
}
.card-body h3{
    margin:0 0 12px;
    font-size:24px;
    color:var(--navy);
}
.card-body p{
    margin:0 0 18px;
    color:var(--muted);
    line-height:1.7;
}

.link{
    color:var(--primary);
    font-weight:700;
    display:inline-flex;
    gap:10px;
    align-items:center;
}

.filters{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin:28px 0 42px;
}

.chip{
    padding:14px 28px;
    border-radius:999px;
    background:#eef1f5;
    color:#344256;
    font-size:18px;
    font-weight:700;
}
.chip.active{
    background:var(--primary);
    color:#fff;
}

.project-thumb,
.post-thumb{
    background:linear-gradient(135deg,#111827,#334155);
}
.project-thumb .label{
    position:absolute;
    left:18px;
    top:18px;
    background:var(--primary);
    color:#fff;
    padding:12px 18px;
    border-radius:0 0 18px 18px;
    font-weight:700;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

.testimonial{
    padding:26px 28px 24px;
}

.stars{
    color:var(--primary);
    font-size:28px;
    letter-spacing:5px;
    margin-bottom:14px;
}

.quote{
    font-size:76px;
    line-height:1;
    color:#d7d3ff;
    margin-bottom:10px;
}

.testimonial p{
    font-size:18px;
    line-height:1.95;
    color:#334155;
    min-height:180px;
}

.person{
    display:flex;
    align-items:center;
    gap:16px;
    border-top:1px solid #e5e7eb;
    padding-top:18px;
    margin-top:18px;
}
.avatar{
    width:58px;
    height:58px;
    border-radius:50%;
    background:var(--primary);
    display:grid;
    place-items:center;
    color:#fff;
    font-weight:800;
}

.cta-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:34px;
    padding-top:56px;
}

.cta{
    background:var(--navy2);
    color:#fff;
    border-radius:30px;
    padding:44px 46px;
    box-shadow:var(--shadow);
}

.cta h3{
    margin:0 0 18px;
    font-size:28px;
    color:#fff;
}
.cta p{
    margin:0 0 28px;
    font-size:20px;
    line-height:1.65;
    color:rgba(255,255,255,.82);
}

.cta-phone{
    background:var(--primary);
    border-radius:22px;
    padding:24px 22px;
    text-align:center;
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}
.cta-phone strong{
    display:block;
    font-size:24px;
    margin-top:10px;
    color:#fff;
}

.mini-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.mini{
    background:rgba(255,255,255,.08);
    border-radius:22px;
    padding:22px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#fff;
}
.mini strong{
    display:block;
    font-size:22px;
    margin-top:10px;
    color:#fff;
}

.subscribe{
    display:flex;
    gap:14px;
}
.subscribe input,
.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #d7dce4;
    border-radius:16px;
    padding:18px 20px;
    font:inherit;
    background:#fff;
    color:#111;
}
.subscribe input{height:76px}
.subscribe button{
    height:76px;
    padding:0 30px;
    border:0;
    border-radius:18px;
    background:var(--primary);
    color:#fff;
    font-size:18px;
    font-weight:800;
}

.page-hero{
    padding:56px 0 24px;
    background:var(--soft);
    border-bottom:1px solid #e5e7eb;
}

.breadcrumbs{
    font-size:15px;
    color:#64748b;
    margin-bottom:12px;
}

.page-hero h1{
    margin:0;
    color:var(--navy);
    font-size:62px;
    line-height:1.02;
    letter-spacing:-1.5px;
}

.page-hero p{
    margin:18px 0 0;
    max-width:920px;
    color:#526074;
    font-size:21px;
    line-height:1.7;
}

.content-wrap{
    padding:5px 0;
    background:#fff;
}

.entry{
    background:#fff;
    padding:34px;
    border-radius:24px;
    box-shadow:var(--shadow);
    line-height:1.85;
    color:#334155;
}

.contact-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.contact-form{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:var(--shadow);
}

.field{
    display:grid;
    gap:10px;
    margin-bottom:18px;
}
.field label{
    font-weight:700;
    color:#24324d;
}
.contact-form textarea{
    min-height:170px;
    resize:vertical;
}

.footer{
    padding:30px 0 44px;
    color:#64748b;
    text-align:center;
    border-top:1px solid #eceff5;
    background:#fff;
}

/* A癟覺k section yaz覺lar覺 */
.section h1,
.section h2,
.section h3,
.section h4,
.section h5,
.section h6{
    color:#14213b;
}

.section p,
.section span,
.section li,
.section small,
.section .text-lg,
.section .card-body p,
.section .benefit p{
    color:#475569;
}

.section .bullet,
.section .dot-item{
    color:#334155;
}

.section .media,
.section .product-card,
.section .project-card,
.section .post-card,
.section .mini-card,
.section .testimonial,
.section .contact-form,
.section .entry,
.section .benefit{
    background:#ffffff;
    border:1px solid #e7eaf0;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
}

.section .price,
.section .rating,
.section .meta,
.tag{
    color:#14213b;
    font-weight:600;
}

.section .description,
.section .feature-copy p,
.section .product-info p,
.section .product-meta{
    color:#475569;
}

main,
.content,
.page-content{
    background:#ffffff;
}

/* Responsive */
@media (max-width:1400px){
    .header-inner{grid-template-columns:220px 1fr 280px}
    .nav{gap:20px;font-size:15px}
    .hero h1{font-size:70px}
    .feature-title,.section-head h2,.page-hero h1{font-size:62px}
    .card-grid.products{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width:1100px){
    .header-inner{grid-template-columns:1fr auto auto;gap:10px}
    .nav{display:none}
    .phone-list,.mini-cart{display:none}
    .mobile-toggle{display:grid}
    .grid-2,.feature-row,.feature-row.reverse,.cta-grid,.contact-layout{grid-template-columns:1fr}
    .feature-row.reverse .copy,.feature-row.reverse .media{order:unset}
    .card-grid.posts,.card-grid.projects,.simple-grid,.testimonials-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .hero{min-height:620px}
    .hero h1{font-size:52px}
    .hero p{font-size:19px}
    .hero-visual{right:-4%;width:58%;height:62%;opacity:.78}
    .about-visual,.media{min-height:540px}
    .title-xl,.feature-title,.section-head h2,.page-hero h1{font-size:48px}
    .header{background:rgba(255,255,255,.98)}
}

@media (max-width:720px){
    .container{width:min(var(--container),calc(100% - 18px))}
    .header-inner{grid-template-columns:minmax(0,1fr) auto auto;gap:10px;min-height:64px}
    .logo{font-size:18px;gap:10px}
    .logo-mark{width:28px;height:28px;border-width:3px}
    .logo-mark:before{left:5px;top:5px;width:10px;height:10px;border-width:3px}
    .call-icon{width:42px;height:42px;font-size:18px}
    .call-icon-desktop{display:none}
    .call-icon-mobile{display:grid}
    .call-icon-mobile svg{width:19px;height:19px}
    .call-icon-count{display:grid;place-items:center;position:absolute;top:-6px;right:-6px;min-width:18px;height:18px;padding:0 4px;border-radius:999px;background:#fff;color:var(--primary);font-size:11px;font-weight:800;border:1px solid rgba(20,33,59,.08);z-index:2}
    .mobile-toggle{width:38px;height:38px}

    .hero{min-height:auto;padding:30px 0 36px}
    .hero-visual{
        right:-8% !important;
        top:18%;
        width:65% !important;
        height:35%;
        opacity:.6;
        max-width:100% !important;
    }

    .hero-content{padding:36px 0 18px}
    .play{
        width:64px;
        height:64px;
        margin-bottom:16px;
        box-shadow:0 0 0 10px rgba(22,9,107,.12);
    }
    .play:before{
        border-left-width:18px;
        border-top-width:12px;
        border-bottom-width:12px;
    }

    .hero h1{
        font-size:34px;
        letter-spacing:-1px;
        margin-bottom:10px;
    }

    .hero p{
        font-size:15px;
        line-height:1.6;
        margin-bottom:20px;
    }

    .hero-actions{gap:12px}
    .btn{width:100%;height:58px;font-size:17px}
    .section{padding:38px 0}
    .about-visual,.media{min-height:300px}
    .circle{width:84vw;max-width:360px}
    .circle-text{font-size:56px}

    .exp,
    .exp-badge{
        right:4px;
        bottom:4px;
        padding:12px 14px;
        border-width:2px;
        border-radius:28px 28px 0 28px;
        max-width:calc(100vw - 32px);
    }

    .exp strong,
    .exp-badge strong{font-size:30px}
    .exp span,
    .exp-badge span{font-size:12px}

    .title-xl,.feature-title,.section-head h2,.page-hero h1{
        font-size:31px;
        line-height:1.05;
        margin-bottom:16px;
    }

    .text-lg,.section-head p,.page-hero p{
        font-size:15px;
        line-height:1.7;
    }

    .bullet-grid,.benefits,.card-grid.products,.card-grid.posts,.card-grid.projects,.simple-grid,.testimonials-grid,.mini-grid{
        grid-template-columns:1fr;
    }

    .bullet{font-size:15px;gap:10px}
    .bullet:before{width:9px;height:9px;margin-top:7px}

    .feature-row{gap:18px;margin-bottom:38px}
    .tags{gap:10px;margin-bottom:18px}

    .tag{
        min-width:unset;
        width:calc(50% - 5px);
        height:52px;
        font-size:15px;
        border-width:2px;
        border-radius:14px;
        max-width:100%;
    }

    .benefit{padding:22px 18px;border-radius:18px}
    .iconbox{width:52px;height:52px;font-size:24px;border-radius:14px}
    .product-thumb,.project-thumb,.post-thumb{height:220px}

    .cta-grid{gap:18px;padding-top:18px}
    .cta{padding:22px 16px;border-radius:20px}
    .cta h3{font-size:22px;margin-bottom:10px}
    .cta p{font-size:15px;margin-bottom:16px}
    .cta-phone,.mini{font-size:15px;padding:14px 12px;border-radius:16px}
    .cta-phone strong,.mini strong{font-size:18px}

    .subscribe{flex-direction:column}
    .subscribe input,.subscribe button{
        width:100%;
        height:54px;
        border-radius:14px;
        font-size:15px;
    }

    .page-hero{padding:28px 0 14px}
    .breadcrumbs{font-size:13px}
    .entry,.contact-form{padding:18px;border-radius:20px}

    .tag,
    .btn,
    .product-card,
    .project-card,
    .post-card,
    .mini-card{
        max-width:100%;
    }

    .led-orbit-wrap{
        width:min(100%,300px) !important;
        max-width:100% !important;
    }
}
.media.inner,
.media.outer{
    position:relative;
    overflow:hidden;
}

.media.inner img,
.media.outer img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    z-index:2;
    border-radius:12px;
}

/* eski dekoratif şekiller resmin üstüne binmesin */
.media.inner::before,
.media.inner::after,
.media.outer::before,
.media.outer::after{
    display:none !important;
}
.product-thumb::before,
.product-thumb::after{
    display:none !important;
}

.product-thumb{
    background:none !important;
}

/* Resmile e-ticaret eklemeleri */
.mini-cart{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;background:#f5f7fb;color:var(--navy);font-weight:800;border:1px solid #e8edf5}
.mini-cart strong{font-size:14px}
.mobile-nav-item .mobile-nav-row{display:flex;align-items:center;justify-content:space-between;gap:8px;border-bottom:1px solid #eef1f5}
.mobile-nav-item .mobile-nav-row>a{border-bottom:0;flex:1}
.mobile-sub-toggle{width:44px;height:44px;border:0;background:transparent;color:var(--navy);font-size:24px;font-weight:800}
.mobile-submenu{display:none}
.mobile-submenu.open{display:block}
.site-footer-led{margin-top:30px;padding:48px 0 24px;color:#dbe3f0;background:linear-gradient(180deg,#111c3c 0%, #0d1530 100%)}
.site-footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:28px}
.site-footer-brand{font-size:28px;font-weight:800;color:#fff;margin-bottom:12px}
.site-footer-desc{line-height:1.8;color:#cdd7e8;max-width:520px}
.site-footer-grid h4{margin:0 0 14px;color:#fff}
.site-footer-links{display:grid;gap:10px}
.site-footer-links a{color:#dbe3f0}.site-footer-links a:hover{color:#fff}
.site-footer-bottom{margin-top:26px;padding-top:16px;border-top:1px solid rgba(255,255,255,.12)}
.product-purchase-box{margin-top:26px;padding:22px;border:1px solid #eceff5;border-radius:24px;background:#fff;box-shadow:var(--shadow)}
.purchase-field{display:grid;gap:8px;margin-bottom:14px}.purchase-field label{font-weight:800;color:#24324d}.purchase-field select,.purchase-field input,.checkout-form-card input,.checkout-form-card textarea,.checkout-form-card select,.qty-input{width:100%;padding:14px 16px;border-radius:14px;border:1px solid #dbe2ee;background:#fff;color:#1e293b}
.purchase-inline{display:flex;gap:14px;align-items:end;flex-wrap:wrap}.purchase-field.qty{max-width:130px;min-width:110px;margin-bottom:0}.purchase-buttons{display:flex;gap:12px;flex-wrap:wrap}
.btn.ghost{background:#fff;color:var(--navy);border:1px solid #dbe2ee}.btn.small{padding:10px 16px;font-size:14px}
.catalog-actions{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.cart-layout,.checkout-layout{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:start}
.cart-table-wrap,.checkout-form-card,.order-summary-card,.success-card,.empty-box{background:#fff;border:1px solid var(--line);border-radius:24px;box-shadow:var(--shadow);padding:24px}
.cart-table{width:100%;border-collapse:collapse}.cart-table th,.cart-table td{padding:14px;border-bottom:1px solid #eef1f5;text-align:left;vertical-align:middle}
.cart-product-line{display:flex;align-items:center;gap:14px}.cart-product-line img{width:72px;height:72px;border-radius:16px;object-fit:cover;border:1px solid var(--line)}
.cart-actions-row,.checkout-submit-row{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:22px}.qty-input{max-width:90px}.remove-btn{padding:10px 14px;border-radius:12px;border:1px solid #f1d2d2;background:#fff;color:#b42318;font-weight:700}
.summary-row,.summary-product{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid #eef1f5}.summary-row.total{font-size:18px;font-weight:800;border-bottom:0;padding-top:16px}.alert-box.error{margin-bottom:18px;padding:14px 16px;border-radius:14px;background:#fff2f2;color:#b42318;border:1px solid #f4c7c7}
@media (max-width:1100px){.site-footer-grid,.cart-layout,.checkout-layout{grid-template-columns:1fr}}
@media (max-width:820px){.site-footer-grid{gap:22px}.purchase-inline,.catalog-actions,.cart-actions-row,.checkout-submit-row{flex-direction:column;align-items:stretch}.purchase-field.qty,.qty-input{max-width:none}.cart-table-wrap,.checkout-form-card,.order-summary-card,.success-card,.empty-box{padding:18px}.cart-table{display:block;overflow-x:auto;white-space:nowrap}.cart-product-line{min-width:220px}.page-hero{padding:44px 0 26px}.page-hero h1{font-size:38px}}


/* Mobile header cart fix */
@media (max-width: 1100px){
  .head-contact .mini-cart{display:none !important;}
}
@media (min-width: 1101px){
  .head-contact .call-icon-count{display:none !important;}
}


/* Mobile cart + checkout layout fix */
@media (max-width: 820px){
  .cart-layout,.checkout-layout{gap:18px}
  .cart-table{display:block;white-space:normal;overflow:visible}
  .cart-table thead{display:none}
  .cart-table tbody,.cart-table tr,.cart-table td{display:block;width:100%}
  .cart-table tr{padding:16px 0;border-bottom:1px solid #eef1f5}
  .cart-table td{padding:8px 0;border:0;text-align:left}
  .cart-table td::before{display:block;margin-bottom:6px;font-size:12px;font-weight:800;color:#64748b;text-transform:uppercase;letter-spacing:.04em}
  .cart-table td:nth-child(1)::before{content:"Ürün"}
  .cart-table td:nth-child(2)::before{content:"Fiyat"}
  .cart-table td:nth-child(3)::before{content:"Adet"}
  .cart-table td:nth-child(4)::before{content:"Toplam"}
  .cart-table td:nth-child(5)::before{content:"İşlem"}
  .cart-product-line{align-items:center;gap:12px;min-width:0}
  .cart-product-line img{width:64px;height:64px;flex:0 0 64px}
  .cart-product-line strong{display:block;font-size:18px;line-height:1.3}
  .qty-input{max-width:100%;min-height:52px}
  .remove-btn,.cart-actions-row .btn,.checkout-submit-row .btn{width:100%;justify-content:center}
  .cart-actions-row{margin-top:16px}
  .order-summary-card{padding:20px}
  .summary-product,.summary-row{gap:12px}
  .summary-product span,.summary-row span{min-width:0}
  .page-hero h1{font-size:32px;line-height:1.15}
}


/* Home premium products */
.products-showcase{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px;
}
.product-card--premium{
    display:flex;
    flex-direction:column;
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 18px 48px rgba(15,23,42,.08);
    border:1px solid rgba(15,23,42,.08);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card--premium:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 54px rgba(15,23,42,.12);
    border-color:rgba(37,18,157,.18);
}
.product-thumb--premium{
    position:relative;
    display:block;
    height:0;
    padding-top:74%;
    background:linear-gradient(145deg,#eef2ff,#f8fafc);
    overflow:hidden;
}
.product-thumb--premium img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .45s ease;
}
.product-card--premium:hover .product-thumb--premium img{
    transform:scale(1.04);
}
.product-thumb--premium::after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:42%;
    background:linear-gradient(180deg,rgba(15,23,42,0) 0%,rgba(15,23,42,.18) 100%);
    pointer-events:none;
}
.product-thumb-fallback{
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    font-size:68px;
    font-weight:800;
    color:var(--primary);
}
.product-card-body{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:22px 22px 24px;
}
.product-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.product-badge{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(37,18,157,.08);
    color:var(--primary);
    font-size:13px;
    font-weight:800;
    letter-spacing:.02em;
}
.product-price{
    font-size:24px;
    line-height:1;
    font-weight:800;
    color:var(--navy);
    white-space:nowrap;
}
.product-card-body h3{
    margin:0;
    font-size:20px;
    line-height:1.35;
}
.product-card-body p{
    margin:0;
    color:#5b667a;
    font-size:15px;
    line-height:1.75;
    min-height:78px;
}
.product-actions{
    display:flex;
    gap:10px;
    margin-top:auto;
}
.btn-chip{
    flex:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    border-radius:14px;
    font-weight:800;
    font-size:15px;
    transition:all .2s ease;
    text-decoration:none;
}
.btn-chip--ghost{
    border:1px solid rgba(37,18,157,.14);
    color:var(--primary);
    background:#fff;
}
.btn-chip--ghost:hover{
    background:rgba(37,18,157,.05);
}
.btn-chip--solid{
    background:linear-gradient(135deg,var(--primary),#2d3f9c);
    color:#fff;
    box-shadow:0 14px 24px rgba(37,18,157,.18);
}
.btn-chip--solid:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 28px rgba(37,18,157,.22);
}

/* Home premium testimonials */
.testimonials-grid--premium{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}
.testimonial--premium{
    position:relative;
    padding:28px;
    border-radius:28px;
    background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
    box-shadow:0 18px 48px rgba(15,23,42,.07);
    border:1px solid rgba(15,23,42,.08);
}
.testimonial-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:12px;
}
.review-chip{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    background:#eef2ff;
    color:var(--primary);
    font-size:12px;
    font-weight:800;
}
.testimonial--premium .stars{
    margin-bottom:0;
    font-size:24px;
    letter-spacing:3px;
}
.testimonial--premium .quote{
    margin-bottom:8px;
    font-size:62px;
    color:#d8d2ff;
}
.testimonial--premium p{
    min-height:138px;
    margin:0;
    font-size:17px;
    line-height:1.9;
    color:#334155;
}
.person--premium{
    margin-top:22px;
    padding-top:18px;
}
.person-meta{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.person-meta strong{
    color:var(--navy);
}
.person-meta span{
    color:#64748b;
}

/* Remove CTA block spacing if section hidden */
.cta-grid{display:none;}

@media (max-width:1200px){
    .products-showcase,
    .testimonials-grid--premium{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media (max-width:767px){
    .products-showcase,
    .testimonials-grid--premium{
        grid-template-columns:1fr;
    }
    .product-card-body{
        padding:18px 18px 20px;
    }
    .product-card-body p,
    .testimonial--premium p{
        min-height:0;
    }
    .product-actions{
        flex-direction:column;
    }
    .product-price{
        font-size:21px;
    }
    .testimonial-head{
        align-items:flex-start;
        flex-direction:column;
    }
}
