:root{--primary:#0f766e;--secondary:#0f766e;--accent:#f59e0b;--bg:#ffffff;--section:#f6f8fc;--text:#1f2937;--gray:#5d6676;--border:#e6e9ef;--dark:#0b1220;}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;color:var(--text);background:var(--bg);
font-family:Pretendard,'Pretendard Variable',-apple-system,BlinkMacSystemFont,'Segoe UI','Apple SD Gothic Neo','Malgun Gothic',sans-serif;
-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;line-height:1.6}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}
h1,h2,h3,h4{font-weight:700;letter-spacing:-.01em;margin:0}
section{padding:112px 0}
.container{width:min(100% - 40px,1180px);margin:0 auto}
.container-wide{width:min(100% - 40px,1360px);margin:0 auto}
.muted{background:var(--section)}
/* header */
.site-header{position:sticky;top:0;z-index:50;border-bottom:1px solid transparent;
background:rgba(255,255,255,.82);backdrop-filter:blur(18px);transition:border-color .18s,box-shadow .18s}
.site-header.is-scrolled{border-color:var(--border);box-shadow:0 12px 34px rgba(18,32,62,.06)}
.header-inner{display:flex;height:76px;align-items:center;justify-content:space-between}
.logo{display:inline-flex;align-items:center;gap:10px;font-size:1.1rem;font-weight:800}
.logo-mark{display:grid;width:36px;height:36px;place-items:center;border-radius:10px;color:#fff;background:var(--primary);font-weight:800}
.nav{display:flex;gap:30px;color:#4d5565;font-size:.95rem;font-weight:700}
.nav a:hover{color:var(--primary)}
.menu-button,.drawer-close{display:none;width:42px;height:42px;place-items:center;border:1px solid var(--border);border-radius:50%;background:#fff;cursor:pointer}
.drawer{pointer-events:none;position:fixed;inset:0;z-index:100;opacity:0;background:rgba(8,17,36,.44);transition:opacity .18s}
.drawer.is-open{pointer-events:auto;opacity:1}
.drawer-panel{position:absolute;right:0;top:0;display:flex;width:min(86vw,360px);height:100%;flex-direction:column;gap:8px;padding:72px 24px 24px;background:#fff;transform:translateX(100%);transition:transform .22s}
.drawer.is-open .drawer-panel{transform:translateX(0)}
.drawer-panel a{padding:15px 4px;font-weight:700}
.drawer-close{position:absolute;top:20px;right:24px}
/* buttons */
.button{display:inline-flex;min-height:48px;align-items:center;justify-content:center;gap:10px;border:1px solid transparent;border-radius:999px;padding:0 22px;color:#fff;background:var(--primary);font-weight:700;cursor:pointer;box-shadow:0 16px 34px color-mix(in srgb,var(--primary) 24%,transparent);transition:transform .18s,box-shadow .18s}
.button:hover{transform:translateY(-2px);box-shadow:0 20px 40px color-mix(in srgb,var(--primary) 30%,transparent)}
.button.secondary{color:var(--primary);background:#fff;border-color:color-mix(in srgb,var(--primary) 20%,#fff);box-shadow:none}
.button.secondary:hover{border-color:var(--primary)}
.badge{display:inline-flex;min-height:30px;align-items:center;border:1px solid color-mix(in srgb,var(--primary) 16%,transparent);border-radius:999px;padding:0 13px;color:var(--primary);background:color-mix(in srgb,var(--primary) 8%,#fff);font-size:.82rem;font-weight:700}
/* hero */
.hero{position:relative;padding:70px 0 84px;background:linear-gradient(180deg,#fff 0%,var(--section) 100%)}
.hero-grid{display:grid;min-height:560px;grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);align-items:center;gap:56px}
.hero-grid.left{grid-template-columns:minmax(0,1.06fr) minmax(0,.94fr)}
.hero-grid.left .hero-visual{order:-1}
.hero h1{max-width:720px;margin:22px 0 0;color:#111a2e;font-size:clamp(2.8rem,5.4vw,5.4rem);font-weight:700;line-height:1.02}
.hero p{max-width:600px;margin:24px 0 0;color:#5d6676;font-size:clamp(1.02rem,1.4vw,1.2rem);line-height:1.8}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px}
.hero-visual{position:relative;margin:0}
.hero-visual::before{position:absolute;inset:-16px;border:1px solid color-mix(in srgb,var(--primary) 12%,transparent);border-radius:24px;content:""}
.hero-visual img{position:relative;width:100%;aspect-ratio:1.2;border-radius:20px;object-fit:cover;box-shadow:0 36px 90px color-mix(in srgb,var(--primary) 18%,transparent)}
.hero-stat{position:absolute;left:-22px;bottom:26px;display:grid;gap:2px;padding:16px 22px;border-radius:14px;background:#fff;box-shadow:0 20px 46px rgba(19,33,68,.14);z-index:2}
.hero-stat strong{font-size:1.7rem;color:var(--primary);line-height:1}
.hero-stat span{font-size:.82rem;color:var(--gray)}
.hero-center{text-align:center}
.hero-center .hero-copy{max-width:820px;margin:0 auto}
.hero-center .hero-actions{justify-content:center}
.hero-center .hero-visual{margin-top:56px}
.hero-center .hero-visual img{aspect-ratio:2.3}
.hero-rate{display:flex;align-items:center;gap:10px;margin-top:24px;color:#5d6676;font-size:.92rem;font-weight:600}
.hero-rate b{color:var(--primary);letter-spacing:1px}
.scroll-indicator{position:absolute;bottom:22px;left:50%;display:grid;width:42px;height:42px;place-items:center;border:1px solid color-mix(in srgb,var(--primary) 18%,#fff);border-radius:50%;color:var(--primary);background:#fff;transform:translateX(-50%);animation:bounce 1.8s ease-in-out infinite}
@keyframes bounce{50%{transform:translate(-50%,7px)}}
/* section title */
.section-title{max-width:720px;margin-bottom:48px}
.section-title.center{margin-inline:auto;text-align:center}
.section-title h2{margin:16px 0 0;font-size:clamp(1.9rem,3.6vw,3rem);line-height:1.1}
.section-title p{margin:16px 0 0;color:var(--gray);font-size:1.06rem;line-height:1.75}
/* about */
.about-top{display:grid;grid-template-columns:1.15fr .85fr;gap:64px;align-items:end}
.statement{border-left:3px solid var(--primary);padding-left:24px}
.statement strong{color:var(--primary);font-size:.82rem;text-transform:uppercase;letter-spacing:.04em}
.statement p{margin:8px 0 22px;color:#555f6d;line-height:1.75}
.grid{display:grid;gap:24px}
.grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{border:1px solid var(--border);border-radius:8px;background:#fff;box-shadow:0 20px 46px rgba(19,33,68,.06);transition:transform .18s,border-color .18s,box-shadow .18s}
.card:hover{transform:translateY(-8px);border-color:color-mix(in srgb,var(--primary) 45%,#fff);box-shadow:0 26px 60px color-mix(in srgb,var(--primary) 14%,transparent)}
.value-card,.service-card{min-height:238px;padding:30px}
.icon-box{display:grid;width:54px;height:54px;place-items:center;border-radius:16px;color:var(--primary);background:color-mix(in srgb,var(--primary) 12%,#fff)}
.icon-box svg{width:26px;height:26px}
.card h3{margin:22px 0 12px;font-size:1.18rem}
.card p{margin:0;color:var(--gray);line-height:1.72}
/* portfolio */
.filters{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:30px}
.filters button{min-height:40px;border:1px solid var(--border);border-radius:999px;padding:0 18px;color:#555f6d;background:#fff;font-weight:700;cursor:pointer;transition:.18s}
.filters button.active{border-color:var(--primary);color:#fff;background:var(--primary)}
.portfolio-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.project-card{overflow:hidden}
.project-media{position:relative;overflow:hidden;aspect-ratio:1.3;background:color-mix(in srgb,var(--primary) 12%,#fff)}
.project-media img{width:100%;height:100%;object-fit:cover;transform:scale(1.05);transition:transform .22s}
.project-card:hover img{transform:scale(1.12)}
.project-media span{position:absolute;right:14px;bottom:12px;color:#fff;font-size:1.7rem;font-weight:700;text-shadow:0 2px 16px rgba(0,0,0,.34)}
.project-body{padding:22px}
.project-body small{color:var(--primary);font-weight:800}
.project-body h3{margin:10px 0;font-size:1.12rem}
.project-body p{margin:0;min-height:70px;color:var(--gray);font-size:.95rem;line-height:1.65}
/* stats */
.stats{padding:74px 0;background:var(--primary)}
.stats-grid{display:grid;overflow:hidden;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;border-radius:10px;background:rgba(255,255,255,.18)}
.stat{display:grid;min-height:168px;place-items:center;align-content:center;gap:10px;color:#fff;background:color-mix(in srgb,var(--primary) 92%,#000)}
.stat strong{font-size:clamp(2rem,4vw,3rem);line-height:1}
.stat span{color:rgba(255,255,255,.8);font-weight:700}
/* process timeline */
.timeline{position:relative;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:20px;margin:0;padding:0;list-style:none}
.timeline::before{position:absolute;left:8%;right:8%;top:31px;height:2px;background:color-mix(in srgb,var(--primary) 18%,#fff);content:""}
.timeline li{position:relative;padding-top:78px}
.timeline .num{position:absolute;top:0;left:0;display:grid;width:64px;height:64px;place-items:center;border:8px solid var(--section);border-radius:50%;color:#fff;background:var(--primary);font-weight:800}
.timeline h3{margin:0 0 10px;font-size:1.1rem}
.timeline p{margin:0;color:var(--gray);line-height:1.7}
/* testimonials */
.testimonial-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.testimonial{min-height:280px;padding:32px}
.testimonial .quote{color:var(--primary);font-size:2.2rem;line-height:1;font-family:Georgia,serif}
.testimonial p{margin:14px 0 22px;color:#3f4756;line-height:1.75}
.testimonial strong{display:block}
.testimonial span{display:block;margin-top:4px;color:var(--gray);font-size:.9rem}
/* pricing */
.pricing-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:stretch}
.price-card{display:flex;flex-direction:column;padding:34px 30px}
.price-card.pop{border-color:var(--primary);box-shadow:0 26px 60px color-mix(in srgb,var(--primary) 16%,transparent);position:relative}
.price-card.pop::before{content:"인기";position:absolute;top:16px;right:16px;background:var(--primary);color:#fff;font-size:.72rem;font-weight:700;padding:4px 11px;border-radius:999px}
.price-card h3{font-size:1.16rem}
.price-card .price{margin:12px 0;font-size:2.4rem;font-weight:800}
.price-card .price small{font-size:.9rem;color:var(--gray);font-weight:600}
.price-card ul{margin:8px 0 24px;padding:0;list-style:none;flex:1}
.price-card li{padding:9px 0;border-bottom:1px solid var(--border);color:var(--gray);font-size:.94rem}
/* faq */
.faq-list{display:grid;gap:12px;max-width:900px;margin:0 auto}
.faq-item{border:1px solid var(--border);border-radius:8px;background:#fff}
.faq-question{display:flex;width:100%;align-items:center;justify-content:space-between;gap:18px;border:0;background:transparent;padding:22px 24px;color:var(--text);font-weight:800;text-align:left;cursor:pointer}
.faq-question span{color:var(--primary);transition:transform .2s}
.faq-item.is-open .faq-question span{transform:rotate(45deg)}
.faq-answer{display:none;margin:0;padding:0 24px 22px;color:var(--gray);line-height:1.75}
.faq-item.is-open .faq-answer{display:block}
/* contact */
.contact-grid{display:grid;grid-template-columns:.88fr 1.12fr;gap:40px;align-items:start}
.contact-info,.contact-form{border:1px solid var(--border);border-radius:8px;background:#fff;padding:32px;box-shadow:0 20px 46px rgba(18,32,62,.05)}
.contact-info{display:grid;gap:14px}
.contact-info a,.contact-info>span{line-height:1.55;color:#3f4756;font-weight:600}
.contact-info a:hover{color:var(--primary)}
.map{display:grid;min-height:240px;place-items:center;align-content:center;gap:8px;margin-top:16px;border:1px dashed color-mix(in srgb,var(--primary) 30%,#fff);border-radius:8px;background:linear-gradient(90deg,color-mix(in srgb,var(--primary) 8%,transparent) 1px,transparent 1px),linear-gradient(color-mix(in srgb,var(--primary) 8%,transparent) 1px,transparent 1px),var(--section);background-size:28px 28px;color:var(--primary);text-align:center}
.contact-form{display:grid;gap:16px}
.field{display:grid;gap:8px;font-weight:700;font-size:.92rem}
.field input,.field textarea{width:100%;border:1px solid var(--border);border-radius:8px;padding:14px 15px;color:var(--text);background:#fff;font-weight:400;resize:vertical}
.field input:focus,.field textarea:focus{border-color:var(--primary);box-shadow:0 0 0 4px color-mix(in srgb,var(--primary) 14%,transparent);outline:none}
/* footer */
.site-footer{background:var(--dark);color:rgba(255,255,255,.78)}
.footer-top{display:grid;grid-template-columns:1.15fr 1.85fr;gap:70px;padding:72px 0 42px}
.footer-logo{color:#fff}
.footer-top>div>p{max-width:360px;line-height:1.75;color:rgba(255,255,255,.66)}
.footer-menus{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:36px}
.footer-menus h3{margin:0 0 18px;color:#fff;font-size:.95rem}
.footer-menus a{display:block;width:fit-content;margin:12px 0;color:rgba(255,255,255,.72)}
.footer-menus a:hover{color:#fff}
.footer-bottom{display:flex;justify-content:space-between;gap:24px;padding:24px 0;border-top:1px solid rgba(255,255,255,.12);font-size:.9rem}
/* reveal */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .55s ease,transform .55s ease}
.reveal.is-visible{opacity:1;transform:none}
/* responsive */
@media(max-width:1080px){.portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.testimonial-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:980px){.hero-grid,.hero-grid.left,.about-top,.contact-grid,.footer-top{grid-template-columns:1fr}.hero-grid{min-height:auto}.hero-grid.left .hero-visual{order:0}.hero-visual{margin-top:8px}}
@media(max-width:900px){.nav,.desktop-cta{display:none}.menu-button,.drawer-close{display:grid}.grid.three,.stats-grid,.pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.timeline{grid-template-columns:1fr}.timeline::before{left:31px;right:auto;top:0;bottom:0;width:2px;height:auto}.timeline li{min-height:88px;padding-top:0;padding-left:88px}}
@media(max-width:640px){section{padding:82px 0}.container,.container-wide{width:min(100% - 28px,100%)}.header-inner{height:66px}.hero{padding-top:44px}.hero-actions{flex-direction:column;align-items:stretch}.grid.three,.portfolio-grid,.testimonial-grid,.stats-grid,.pricing-grid,.footer-menus{grid-template-columns:1fr}.footer-bottom{flex-direction:column}.hero-stat{left:12px}}

/* about: split image + text + checklist */
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about-split .pic{aspect-ratio:1.05;border-radius:16px;background:center/cover no-repeat;box-shadow:0 36px 90px color-mix(in srgb,var(--primary) 16%,transparent)}
.about-split .checklist{margin:22px 0 0;padding:0;list-style:none}
.about-split .checklist li{display:flex;gap:12px;align-items:flex-start;padding:10px 0;color:#3f4756;font-weight:600}
.about-split .checklist li::before{content:"✓";display:grid;place-items:center;width:22px;height:22px;flex:0 0 22px;border-radius:50%;background:color-mix(in srgb,var(--primary) 12%,#fff);color:var(--primary);font-size:.8rem;font-weight:800;margin-top:1px}
@media(max-width:980px){.about-split{grid-template-columns:1fr;gap:30px}}
/* about: highlight number */
.about-hl{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:center}
.about-hl .big{font-size:clamp(3.4rem,7vw,6rem);font-weight:800;color:var(--primary);line-height:.95;letter-spacing:-.02em}
.about-hl .big span{display:block;font-size:1rem;font-weight:700;color:var(--gray);margin-top:12px;letter-spacing:0}
@media(max-width:980px){.about-hl{grid-template-columns:1fr;gap:26px}}
/* services: list rows */
.svc-list{display:grid;gap:14px}
.svc-list .row{display:grid;grid-template-columns:auto 54px 1fr auto;gap:22px;align-items:center;padding:24px 28px;border:1px solid var(--border);border-radius:10px;background:#fff;transition:.18s}
.svc-list .row:hover{transform:translateY(-4px);border-color:color-mix(in srgb,var(--primary) 40%,#fff);box-shadow:0 20px 46px rgba(19,33,68,.07)}
.svc-list .n{font-size:1.2rem;font-weight:800;color:color-mix(in srgb,var(--primary) 40%,#cfd6e2)}
.svc-list .row h3{margin:0 0 4px;font-size:1.1rem}.svc-list .row p{margin:0;color:var(--gray);font-size:.95rem}
.svc-list .arrow{color:var(--primary);font-size:1.2rem}
@media(max-width:700px){.svc-list .row{grid-template-columns:40px 1fr;gap:14px}.svc-list .icon-box,.svc-list .arrow{display:none}}
/* services: zigzag */
.zz{display:grid;gap:56px}
.zz .row{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.zz .row:nth-child(even){direction:rtl}.zz .row:nth-child(even)>*{direction:ltr}
.zz .pic{aspect-ratio:1.4;border-radius:16px;background:center/cover no-repeat;box-shadow:0 30px 70px color-mix(in srgb,var(--primary) 14%,transparent)}
.zz .tx .eyebrow{color:color-mix(in srgb,var(--primary) 45%,#c9d2e0);font-weight:800;font-size:2rem;line-height:1;display:block;margin-bottom:10px}
.zz .tx h3{font-size:1.5rem;margin:0 0 12px}.zz .tx p{color:var(--gray);margin:0 0 16px}
.zz .tx a{color:var(--primary);font-weight:700}
@media(max-width:900px){.zz .row,.zz .row:nth-child(even){grid-template-columns:1fr;gap:24px;direction:ltr}}
/* services: split feature */
.splitfeat{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.splitfeat .pic{aspect-ratio:1.05;border-radius:16px;background:center/cover no-repeat;box-shadow:0 36px 90px color-mix(in srgb,var(--primary) 16%,transparent)}
.splitfeat ul{margin:0;padding:0;list-style:none}
.splitfeat li{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--border)}
.splitfeat .icon-box{width:46px;height:46px;flex:0 0 46px;border-radius:12px}
.splitfeat b{font-size:1.05rem}.splitfeat p{margin:3px 0 0;color:var(--gray);font-size:.92rem}
@media(max-width:900px){.splitfeat{grid-template-columns:1fr;gap:28px}}
/* portfolio variants */
.portfolio-grid.g3{grid-template-columns:repeat(3,minmax(0,1fr))}
.pf-masonry{columns:3;column-gap:22px}
.pf-masonry .project-card{break-inside:avoid;margin-bottom:22px}
.pf-masonry .project-card:nth-child(3n+1) .project-media{aspect-ratio:1}
.pf-masonry .project-card:nth-child(3n+2) .project-media{aspect-ratio:1.5}
.pf-masonry .project-card:nth-child(3n) .project-media{aspect-ratio:1.25}
@media(max-width:1080px){.portfolio-grid.g3{grid-template-columns:repeat(2,minmax(0,1fr))}.pf-masonry{columns:2}}
@media(max-width:640px){.pf-masonry{columns:1}}
/* stats cards */
.stat-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.stat-cards .sc{border:1px solid var(--border);border-radius:10px;background:#fff;padding:34px 20px;text-align:center;box-shadow:0 20px 46px rgba(19,33,68,.06)}
.stat-cards .sc strong{display:block;font-size:clamp(2rem,3.6vw,2.8rem);color:var(--primary);line-height:1}
.stat-cards .sc span{color:var(--gray);font-weight:700;font-size:.92rem;margin-top:8px;display:block}
@media(max-width:900px){.stat-cards{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:520px){.stat-cards{grid-template-columns:1fr}}
/* process vertical list */
.vlist{max-width:820px;margin:0 auto;display:grid;gap:8px}
.vlist .step{display:grid;grid-template-columns:64px 1fr;gap:22px;align-items:start;padding:22px 0;border-bottom:1px solid var(--border)}
.vlist .num{width:54px;height:54px;border-radius:14px;display:grid;place-items:center;background:color-mix(in srgb,var(--primary) 12%,#fff);color:var(--primary);font-weight:800;font-size:1.1rem}
.vlist h3{margin:0 0 6px;font-size:1.14rem}.vlist p{margin:0;color:var(--gray)}
/* testimonial single */
.testi-single{max-width:860px;margin:0 auto;text-align:center}
.testi-single .quote{color:var(--primary);font-size:3rem;font-family:Georgia,serif;line-height:1}
.testi-single p{font-size:clamp(1.3rem,2.4vw,1.9rem);font-weight:600;line-height:1.5;margin:10px 0 26px;color:#2a3342}
.testi-single strong{display:block}.testi-single span{color:var(--gray);font-size:.95rem}
/* logos strip */
.logos-strip{display:flex;gap:44px;justify-content:center;flex-wrap:wrap;align-items:center}
.logos-strip i{font-style:normal;font-weight:800;font-size:1.3rem;color:var(--gray);opacity:.45;letter-spacing:.5px}
.logos-cap{text-align:center;color:var(--gray);font-weight:700;font-size:.9rem;margin-bottom:24px;letter-spacing:.04em}
/* cta band */
.cta-band{background:var(--primary);border-radius:18px;padding:56px;display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap}
.cta-band h2{color:#fff;font-size:clamp(1.6rem,3vw,2.4rem);margin:0}
.cta-band p{color:rgba(255,255,255,.85);margin:8px 0 0}
.cta-band .button{background:#fff;color:var(--primary);box-shadow:none}
/* hero extra bits */
.hero-mini-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:30px;max-width:540px}
.hero-mini-cards .mc{border:1px solid var(--border);border-radius:12px;padding:18px;background:#fff;box-shadow:0 12px 30px rgba(19,33,68,.05)}
.hero-mini-cards .mc .icon-box{width:40px;height:40px;border-radius:10px;margin-bottom:10px}
.hero-mini-cards .mc b{font-size:.98rem}
.hero-logos-row{display:flex;gap:26px;flex-wrap:wrap;align-items:center;margin-top:30px}
.hero-logos-row i{font-style:normal;font-weight:800;color:var(--gray);opacity:.5;font-size:1rem}
.hero-minimal{text-align:center;padding:96px 0 104px}
.hero-minimal .hero-copy{max-width:880px;margin:0 auto}
.hero-minimal .hero-actions{justify-content:center}

/* responsive hardening */
@media(max-width:640px){.grid.three[style]{grid-template-columns:1fr!important}.hero-mini-cards{grid-template-columns:1fr}.cta-band{padding:34px 24px;border-radius:14px}.logos-strip{gap:22px}.logos-strip i{font-size:1rem}.hero-logos-row{gap:16px}.hero h1{word-break:keep-all;overflow-wrap:anywhere}}

/* layout redesign system */
body.template-shell{--surface:#fff;--ink-strong:#101827}
body.template-shell section{overflow:hidden}
body.template-shell .site-header{box-shadow:0 10px 34px rgba(12,22,46,.04)}
body.template-shell .hero{isolation:isolate}
body.template-shell .hero::after{position:absolute;inset:auto 0 0;height:36%;background:linear-gradient(180deg,transparent,rgba(255,255,255,.6));content:"";z-index:-1}
.layout-brief{padding:0;background:var(--bg)}
.layout-brief .brief-shell{display:grid;gap:18px;align-items:stretch;margin-top:-48px;position:relative;z-index:3}
.layout-brief .brief-card{border:1px solid var(--border);border-radius:8px;background:#fff;padding:24px;box-shadow:0 24px 58px rgba(15,27,56,.08)}
.layout-brief .brief-card small{display:block;color:var(--primary);font-weight:800;margin-bottom:10px}
.layout-brief .brief-card h3{font-size:1.12rem;margin:0 0 8px}
.layout-brief .brief-card p{margin:0;color:var(--gray);line-height:1.65}
.layout-brief .brief-card b{display:block;font-size:1.9rem;line-height:1;color:var(--primary)}
.layout-brief .brief-card span{color:var(--gray);font-size:.9rem;font-weight:700}
.layout-brief .brief-card.accent{background:var(--primary);color:#fff;border-color:transparent}
.layout-brief .brief-card.accent small,.layout-brief .brief-card.accent b,.layout-brief .brief-card.accent span,.layout-brief .brief-card.accent p{color:#fff}

body.layout-01 .hero{background:radial-gradient(circle at 82% 18%,color-mix(in srgb,var(--accent) 18%,transparent),transparent 28%),linear-gradient(135deg,#fff 0%,var(--section) 66%,#fff 100%)}
body.layout-01 .hero-grid{grid-template-columns:.78fr 1.22fr;gap:72px}
body.layout-01 .hero-visual img{aspect-ratio:1.55;border-radius:8px}
body.layout-01 .hero-visual::before{border-radius:8px;inset:-22px 22px 22px -22px}
body.layout-01 .layout-brief .brief-shell{grid-template-columns:1.25fr .75fr .75fr}
body.layout-01 .portfolio-grid{grid-template-columns:1.2fr .8fr .8fr}
body.layout-01 .portfolio-grid .project-card:first-child{grid-row:span 2}
body.layout-01 .portfolio-grid .project-card:first-child .project-media{aspect-ratio:.95}

body.layout-02{background:linear-gradient(90deg,color-mix(in srgb,var(--primary) 7%,#fff) 0 28%,#fff 28% 100%)}
body.layout-02 .hero{background:transparent}
body.layout-02 .hero-grid{grid-template-columns:1.08fr .92fr}
body.layout-02 .hero-copy{border-left:6px solid var(--primary);padding-left:34px}
body.layout-02 .hero-visual img{aspect-ratio:.9;border-radius:8px}
body.layout-02 .layout-brief .brief-shell{grid-template-columns:.9fr 1.1fr;grid-auto-rows:1fr}
body.layout-02 .layout-brief .brief-card:first-child{grid-row:span 2}
body.layout-02 .svc-list .row{border-radius:0;border-width:0 0 1px;padding-left:0;padding-right:0;box-shadow:none}
body.layout-02 .about-split .pic{border-radius:8px;aspect-ratio:.9}

body.layout-03 .hero{padding-bottom:42px;text-align:center;background:linear-gradient(180deg,#fff 0%,color-mix(in srgb,var(--primary) 8%,#fff) 100%)}
body.layout-03 .hero h1,.layout-03 .hero p{margin-left:auto;margin-right:auto}
body.layout-03 .hero-visual img{border-radius:8px;aspect-ratio:2.7}
body.layout-03 .layout-brief .brief-shell{grid-template-columns:repeat(4,1fr)}
body.layout-03 .layout-brief .brief-card{min-height:156px}
body.layout-03 .zz .row{grid-template-columns:.82fr 1.18fr}
body.layout-03 .pf-masonry .project-card{border-radius:0}

body.layout-04 .hero{background:var(--dark);color:#fff}
body.layout-04 .site-header{background:rgba(255,255,255,.9)}
body.layout-04 .hero h1,body.layout-04 .hero p{color:#fff}
body.layout-04 .badge{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2);color:#fff}
body.layout-04 .hero-visual img{aspect-ratio:1.05;border-radius:8px;box-shadow:0 34px 80px rgba(0,0,0,.34)}
body.layout-04 .layout-brief{background:var(--dark)}
body.layout-04 .layout-brief .brief-shell{grid-template-columns:repeat(3,1fr);margin-top:-38px}
body.layout-04 .layout-brief .brief-card{background:#111a2e;border-color:rgba(255,255,255,.12);color:#fff}
body.layout-04 .layout-brief .brief-card p,body.layout-04 .layout-brief .brief-card span{color:rgba(255,255,255,.72)}
body.layout-04 .splitfeat{grid-template-columns:1.22fr .78fr}
body.layout-04 .stat-cards .sc{border-radius:0}

body.layout-05 .hero{background:#fff;padding-bottom:64px}
body.layout-05 .hero-grid{grid-template-columns:1fr 1fr}
body.layout-05 .hero-copy{display:grid;align-content:center;min-height:520px;padding:48px;border:1px solid var(--border);background:linear-gradient(180deg,#fff,var(--section));border-radius:8px}
body.layout-05 .hero-visual img{aspect-ratio:.86;border-radius:8px}
body.layout-05 .layout-brief .brief-shell{grid-template-columns:1fr 1fr 1fr 1fr;margin-top:0}
body.layout-05 .layout-brief .brief-card{box-shadow:none;border-radius:0;border-width:0 0 1px}
body.layout-05 .testimonial-grid{grid-template-columns:1fr}
body.layout-05 .testimonial{display:grid;grid-template-columns:auto 1fr auto;gap:20px;align-items:center;min-height:0}

@media(max-width:980px){
body.layout-01 .hero-grid,body.layout-02 .hero-grid,body.layout-05 .hero-grid{grid-template-columns:1fr}
body.layout-01 .layout-brief .brief-shell,body.layout-02 .layout-brief .brief-shell,body.layout-03 .layout-brief .brief-shell,body.layout-04 .layout-brief .brief-shell,body.layout-05 .layout-brief .brief-shell{grid-template-columns:repeat(2,minmax(0,1fr))}
body.layout-01 .portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
body.layout-05 .hero-copy{min-height:auto;padding:32px}
}
@media(max-width:640px){
.layout-brief .brief-shell,body.layout-01 .layout-brief .brief-shell,body.layout-02 .layout-brief .brief-shell,body.layout-03 .layout-brief .brief-shell,body.layout-04 .layout-brief .brief-shell,body.layout-05 .layout-brief .brief-shell{grid-template-columns:1fr;margin-top:0}
body.layout-02 .hero-copy{padding-left:20px}
body.layout-05 .testimonial{grid-template-columns:1fr}
body.layout-01 .portfolio-grid{grid-template-columns:1fr}
}

/* isometric logistics refresh */
body.industry-logistics{
--primary:#2563eb;
--secondary:#0ea5e9;
--accent:#f97316;
--section:#eef6ff;
--text:#172033;
--gray:#60708a;
--border:#dbe7f5;
--dark:#10192e;
--mint:#17c6a3;
background:
radial-gradient(circle at 8% 18%,rgba(23,198,163,.11),transparent 28%),
radial-gradient(circle at 92% 10%,rgba(249,115,22,.1),transparent 26%),
#fff;
}
body.industry-logistics::before{
position:fixed;inset:0;z-index:-1;pointer-events:none;content:"";
background-image:linear-gradient(rgba(37,99,235,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(37,99,235,.045) 1px,transparent 1px);
background-size:44px 44px;
mask-image:linear-gradient(180deg,#000 0%,transparent 68%);
}
body.industry-logistics h1,body.industry-logistics h2{letter-spacing:0}
body.industry-logistics .site-header{border-bottom:1px solid rgba(219,231,245,.75);background:rgba(255,255,255,.72)}
body.industry-logistics .logo-mark{border-radius:14px;background:linear-gradient(135deg,var(--primary),var(--secondary));box-shadow:0 12px 28px rgba(37,99,235,.25)}
body.industry-logistics .button{border-radius:14px;background:linear-gradient(135deg,var(--primary),var(--secondary));box-shadow:0 18px 42px rgba(37,99,235,.24)}
body.industry-logistics .button.secondary{color:var(--primary);background:#fff;border-color:rgba(37,99,235,.22);box-shadow:0 12px 30px rgba(37,99,235,.08)}
body.industry-logistics .badge{border-color:rgba(37,99,235,.16);border-radius:12px;color:#1d4ed8;background:rgba(37,99,235,.08)}
body.industry-logistics .hero{background:
radial-gradient(circle at 78% 12%,rgba(249,115,22,.16),transparent 22%),
radial-gradient(circle at 18% 8%,rgba(14,165,233,.16),transparent 28%),
linear-gradient(135deg,#f8fbff 0%,#eff7ff 58%,#fff7ed 100%)}
body.industry-logistics .hero::before{
position:absolute;right:4%;top:11%;width:min(42vw,540px);aspect-ratio:1;content:"";z-index:0;
background:linear-gradient(135deg,rgba(37,99,235,.14),rgba(23,198,163,.1));
clip-path:polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
filter:blur(.2px);
}
body.industry-logistics .hero-grid,body.industry-logistics .hero-copy,body.industry-logistics .hero-visual{position:relative;z-index:1}
body.industry-logistics .hero h1{font-weight:800;color:#10192e;text-wrap:balance;word-break:keep-all;overflow-wrap:normal}
body.industry-logistics .hero p{color:#52647d}
body.industry-logistics .hero-visual{perspective:1200px}
body.industry-logistics .hero-visual::before{
inset:-20px 24px 24px -20px;border:0;border-radius:22px;
background:linear-gradient(135deg,rgba(37,99,235,.2),rgba(23,198,163,.08));
box-shadow:inset 0 0 0 1px rgba(37,99,235,.12);
transform:rotate(-2deg) skewY(-4deg);
}
body.industry-logistics .hero-visual img{
border-radius:20px;filter:saturate(1.08) contrast(1.02);
transform:rotateX(2deg) rotateY(-7deg);
box-shadow:0 34px 80px rgba(30,64,175,.16),24px 24px 0 rgba(37,99,235,.08);
}
.ops-board{
position:absolute;right:-18px;bottom:-24px;z-index:4;width:min(76%,390px);
display:grid;gap:12px;padding:18px;border:1px solid rgba(219,231,245,.9);border-radius:22px;
background:rgba(255,255,255,.9);backdrop-filter:blur(18px);
box-shadow:0 24px 60px rgba(17,31,61,.18);
}
.ops-board::before{position:absolute;left:28px;right:28px;top:50%;height:2px;background:linear-gradient(90deg,var(--primary),var(--mint),var(--accent));content:"";opacity:.8}
.ops-row{position:relative;z-index:1;display:grid;grid-template-columns:auto 1fr auto;gap:10px;align-items:center}
.ops-pin{display:grid;width:34px;height:34px;place-items:center;border-radius:12px;color:#fff;background:linear-gradient(135deg,var(--primary),var(--secondary));font-size:.8rem;font-weight:800;box-shadow:0 10px 22px rgba(37,99,235,.24)}
.ops-row b{font-size:.9rem;color:#172033}.ops-row span{color:var(--gray);font-size:.78rem;font-weight:700}
.ops-metric{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.ops-metric span{padding:10px;border-radius:14px;background:#f3f8ff;color:#52647d;font-size:.78rem;font-weight:800;text-align:center}
.iso-lane{position:relative;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:34px}
.iso-lane::before{position:absolute;left:7%;right:7%;top:44px;height:3px;background:linear-gradient(90deg,var(--primary),var(--secondary),var(--mint),var(--accent));content:"";opacity:.35}
.iso-step{position:relative;z-index:1;padding:22px;border:1px solid rgba(219,231,245,.95);border-radius:18px;background:#fff;box-shadow:0 18px 44px rgba(30,64,175,.08);transform:skewY(-2deg)}
.iso-step>*{transform:skewY(2deg)}
.iso-step i{display:grid;width:52px;height:52px;place-items:center;border-radius:16px;background:linear-gradient(135deg,rgba(37,99,235,.12),rgba(23,198,163,.16));color:var(--primary);font-style:normal;font-weight:900}
.iso-step h3{margin:16px 0 8px}.iso-step p{margin:0;color:var(--gray);font-size:.93rem}
.route-flow{padding:64px 0 36px;background:linear-gradient(180deg,#fff 0%,#f6fbff 100%)}
.route-flow .iso-lane{margin-top:0}
.hero-control-panel{
display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;max-width:850px;margin:42px auto 0;
padding:14px;border:1px solid rgba(255,255,255,.16);border-radius:24px;background:rgba(255,255,255,.08);backdrop-filter:blur(18px);
box-shadow:0 24px 80px rgba(0,0,0,.16)
}
.hero-control-panel div{display:grid;gap:4px;min-height:92px;align-content:center;border-radius:18px;background:rgba(255,255,255,.1);padding:18px;text-align:left}
.hero-control-panel span{color:rgba(255,255,255,.62);font-size:.72rem;font-weight:900;letter-spacing:.08em}
.hero-control-panel strong{color:#fff;font-size:1.05rem}
body.industry-logistics .layout-brief .brief-card,body.industry-logistics .card,body.industry-logistics .faq-item,body.industry-logistics .contact-info,body.industry-logistics .contact-form{
border-color:rgba(219,231,245,.95);border-radius:18px;box-shadow:0 18px 44px rgba(30,64,175,.07)
}
body.industry-logistics .layout-brief .brief-card.accent{background:linear-gradient(135deg,var(--primary),var(--secondary))}
body.industry-logistics .project-card{overflow:hidden}
body.industry-logistics .project-media::after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 38%,rgba(16,25,46,.52));content:""}
body.industry-logistics .project-media span{z-index:1}
body.industry-logistics .stat-cards .sc,body.industry-logistics .stats-grid{border-radius:18px}
body.industry-logistics .stats{background:linear-gradient(135deg,#10192e,#1e3a8a)}
body.industry-logistics .stat{background:rgba(255,255,255,.08);backdrop-filter:blur(10px)}
body.layout-02.industry-logistics{background:linear-gradient(90deg,rgba(37,99,235,.08) 0 30%,#fff 30% 100%)}
body.layout-03.industry-logistics .hero{text-align:center;background:linear-gradient(180deg,#f8fbff 0%,#eaf6ff 100%)}
body.layout-03.industry-logistics .hero-grid{grid-template-columns:1fr}
body.layout-03.industry-logistics .hero-visual{max-width:1040px;margin:36px auto 0}
body.layout-04.industry-logistics .hero{background:
radial-gradient(circle at 70% 14%,rgba(249,115,22,.2),transparent 24%),
linear-gradient(135deg,#10192e 0%,#172554 62%,#0f766e 100%)}
body.layout-04.industry-logistics .hero::before{opacity:.28}
body.layout-04.industry-logistics .layout-brief{background:#10192e}
body.layout-04.industry-logistics .layout-brief .brief-card{background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
body.layout-05.industry-logistics .hero-copy{border-radius:24px;background:linear-gradient(180deg,#fff,#f2f8ff)}
@media(max-width:980px){
.ops-board{position:relative;right:auto;bottom:auto;width:100%;margin-top:18px}
.iso-lane{grid-template-columns:repeat(2,minmax(0,1fr))}
body.industry-logistics .hero-visual img{transform:none}
}
@media(max-width:640px){
.ops-board{padding:14px;border-radius:16px}.ops-metric{grid-template-columns:1fr}
.iso-lane{grid-template-columns:1fr}.iso-lane::before{display:none}
.iso-step{transform:none}.iso-step>*{transform:none}
.hero-control-panel{grid-template-columns:1fr}
}

/* alignment stability pass */
body.industry-logistics .hero-grid{gap:48px}
body.industry-logistics .hero-visual{perspective:none}
body.industry-logistics .hero-visual::before{
inset:-14px;
border-radius:24px;
transform:none;
background:linear-gradient(135deg,rgba(37,99,235,.13),rgba(23,198,163,.08));
}
body.industry-logistics .hero-visual img{
display:block;
max-height:560px;
border-radius:22px;
transform:none;
box-shadow:0 28px 70px rgba(30,64,175,.14),0 0 0 1px rgba(37,99,235,.08);
}
body.layout-01.industry-logistics .hero-visual img,
body.layout-02.industry-logistics .hero-visual img,
body.layout-03.industry-logistics .hero-visual img,
body.layout-05.industry-logistics .hero-visual img{border-radius:22px}
body.industry-logistics .ops-board{
right:18px;
bottom:18px;
width:min(52%,390px);
max-width:calc(100% - 36px);
border-radius:18px;
}
body.industry-logistics .hero-stat{left:18px;bottom:18px;border-radius:16px}
body.industry-logistics .iso-lane{
align-items:stretch;
gap:20px;
}
body.industry-logistics .iso-lane::before{top:48px}
body.industry-logistics .iso-step{
transform:none;
min-height:190px;
}
body.industry-logistics .iso-step>*{transform:none}
body.industry-logistics .layout-brief .brief-shell{align-items:stretch}
body.industry-logistics .layout-brief .brief-card{min-width:0}
body.layout-03.industry-logistics .hero-visual img{max-height:430px}
body.layout-04.industry-logistics .hero-control-panel{position:relative;z-index:1}
@media(max-width:1080px){
body.industry-logistics .ops-board{position:relative;right:auto;bottom:auto;width:100%;max-width:none;margin-top:18px}
}
@media(max-width:640px){
body.industry-logistics .hero-grid{gap:28px}
body.industry-logistics .hero-visual::before{inset:-8px}
body.industry-logistics .hero-visual img{max-height:none;border-radius:18px}
body.industry-logistics .ops-board{width:100%;max-width:none;border-radius:16px}
body.industry-logistics .iso-step{min-height:0}
}

/* layout-specific cleanup */
body.layout-03.industry-logistics .hero{
padding:42px 0 54px;
}
body.layout-03.industry-logistics .hero::before{
top:150px;
right:7%;
width:min(30vw,380px);
opacity:.5;
}
body.layout-03.industry-logistics .hero-grid{
min-height:auto;
display:block;
}
body.layout-03.industry-logistics .hero-copy{
max-width:860px;
margin:0 auto;
}
body.layout-03.industry-logistics .hero h1{
font-size:clamp(2.35rem,4.7vw,4.25rem);
}
body.layout-03.industry-logistics .hero p{
margin-top:14px;
}
body.layout-03.industry-logistics .hero-actions{
justify-content:center;
margin-top:22px;
}
body.layout-03.industry-logistics .hero-mini-cards{
margin:18px auto 0;
}
body.layout-03.industry-logistics .hero-visual{
margin:20px auto 0;
}
body.layout-03.industry-logistics .hero-visual img{
max-height:300px;
aspect-ratio:2.65;
}
body.layout-03.industry-logistics .ops-board{
right:22px;
bottom:22px;
width:min(42%,390px);
}
body.layout-04.industry-logistics .hero{
padding:90px 0 110px;
}
body.layout-04.industry-logistics .hero h1,
body.layout-04.industry-logistics .hero p{
color:#fff;
}
body.layout-04.industry-logistics .badge{
color:#dbeafe;
background:rgba(255,255,255,.1);
border-color:rgba(255,255,255,.18);
}
body.layout-04.industry-logistics .button.secondary{
color:#dbeafe;
background:rgba(255,255,255,.12);
border-color:rgba(255,255,255,.22);
}
body.layout-04.industry-logistics .hero-control-panel{
margin-top:34px;
border-color:rgba(255,255,255,.22);
background:rgba(15,23,42,.42);
box-shadow:0 24px 70px rgba(0,0,0,.28);
}
body.layout-04.industry-logistics .hero-control-panel div{
background:rgba(255,255,255,.15);
box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
body.layout-04.industry-logistics .hero-control-panel span{
color:rgba(255,255,255,.76);
}
body.layout-04.industry-logistics .hero-control-panel strong{
color:#fff;
}

/* brief-shell stability */
body.industry-logistics .layout-brief{
padding:34px 0 46px;
background:#fff;
}
body.layout-04.industry-logistics .layout-brief{
background:#10192e;
}
body.industry-logistics .layout-brief .brief-shell,
body.layout-01.industry-logistics .layout-brief .brief-shell,
body.layout-02.industry-logistics .layout-brief .brief-shell,
body.layout-03.industry-logistics .layout-brief .brief-shell,
body.layout-04.industry-logistics .layout-brief .brief-shell,
body.layout-05.industry-logistics .layout-brief .brief-shell{
display:grid;
grid-auto-rows:auto;
gap:18px;
margin-top:0;
align-items:stretch;
}
body.layout-01.industry-logistics .layout-brief .brief-shell,
body.layout-02.industry-logistics .layout-brief .brief-shell,
body.layout-04.industry-logistics .layout-brief .brief-shell{
grid-template-columns:repeat(3,minmax(0,1fr));
}
body.layout-03.industry-logistics .layout-brief .brief-shell,
body.layout-05.industry-logistics .layout-brief .brief-shell{
grid-template-columns:repeat(4,minmax(0,1fr));
}
body.layout-02.industry-logistics .layout-brief .brief-card:first-child{
grid-row:auto;
}
body.industry-logistics .layout-brief .brief-card,
body.layout-05.industry-logistics .layout-brief .brief-card{
display:flex;
min-height:166px;
min-width:0;
flex-direction:column;
justify-content:center;
border:1px solid rgba(219,231,245,.95);
border-radius:18px;
padding:24px;
background:#fff;
box-shadow:0 18px 44px rgba(30,64,175,.07);
}
body.industry-logistics .layout-brief .brief-card p{
display:-webkit-box;
overflow:hidden;
-webkit-line-clamp:3;
-webkit-box-orient:vertical;
}
body.layout-04.industry-logistics .layout-brief .brief-card{
border-color:rgba(255,255,255,.14);
background:rgba(255,255,255,.08);
box-shadow:none;
}
body.layout-04.industry-logistics .layout-brief .brief-card.accent{
background:linear-gradient(135deg,var(--primary),var(--secondary));
}
@media(max-width:640px){
body.industry-logistics .layout-brief{
padding:24px 0 34px;
}
body.industry-logistics .layout-brief .brief-shell,
body.layout-01.industry-logistics .layout-brief .brief-shell,
body.layout-02.industry-logistics .layout-brief .brief-shell,
body.layout-03.industry-logistics .layout-brief .brief-shell,
body.layout-04.industry-logistics .layout-brief .brief-shell,
body.layout-05.industry-logistics .layout-brief .brief-shell{
grid-template-columns:1fr;
}
body.industry-logistics .layout-brief .brief-card,
body.layout-05.industry-logistics .layout-brief .brief-card{
min-height:0;
}
}
@media(min-width:641px) and (max-width:980px){
body.industry-logistics .layout-brief .brief-shell,
body.layout-01.industry-logistics .layout-brief .brief-shell,
body.layout-02.industry-logistics .layout-brief .brief-shell,
body.layout-03.industry-logistics .layout-brief .brief-shell,
body.layout-04.industry-logistics .layout-brief .brief-shell,
body.layout-05.industry-logistics .layout-brief .brief-shell{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}
@media(max-width:1080px){
body.layout-03.industry-logistics .ops-board{width:100%}
}
@media(max-width:640px){
body.layout-03.industry-logistics .hero{padding:46px 0 56px}
body.layout-03.industry-logistics .hero-actions{justify-content:stretch}
body.layout-04.industry-logistics .hero{padding:70px 0 86px}
}

/* requested logistics refinements */
body.layout-02.industry-logistics{
background:
linear-gradient(90deg,rgba(37,99,235,.06) 0 28%,transparent 28%),
radial-gradient(circle at 12% 16%,rgba(23,198,163,.12),transparent 28%),
radial-gradient(circle at 88% 42%,rgba(249,115,22,.08),transparent 30%),
#f7fbff;
}
body.layout-02.industry-logistics main{
background:linear-gradient(180deg,rgba(255,255,255,.58),rgba(239,247,255,.92) 48%,#fff 100%);
}
body.layout-02.industry-logistics #about{
position:relative;
background:
linear-gradient(135deg,#10213f 0%,#143c65 54%,#0f766e 100%);
color:#fff;
}
body.layout-02.industry-logistics #about::before{
position:absolute;
inset:38px max(20px,calc((100vw - 1180px)/2));
border:1px solid rgba(255,255,255,.12);
border-radius:28px;
content:"";
pointer-events:none;
}
body.layout-02.industry-logistics #about .about-hl{
position:relative;
grid-template-columns:.8fr 1.2fr;
gap:42px;
}
body.layout-02.industry-logistics #about .about-hl .big{
display:grid;
min-height:320px;
place-items:center;
align-content:center;
border-radius:28px;
color:#fff;
background:linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.06));
box-shadow:inset 0 0 0 1px rgba(255,255,255,.14),0 30px 80px rgba(0,0,0,.22);
}
body.layout-02.industry-logistics #about .about-hl .big span,
body.layout-02.industry-logistics #about .section-title p{
color:rgba(255,255,255,.72);
}
body.layout-02.industry-logistics #about .section-title h2{
color:#fff;
}
body.layout-02.industry-logistics #about .badge{
color:#dbeafe;
background:rgba(255,255,255,.1);
border-color:rgba(255,255,255,.18);
}
body.layout-02.industry-logistics #about ul{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:14px;
margin:26px 0 0;
padding:0;
list-style:none;
}
body.layout-02.industry-logistics #about li{
display:flex;
gap:14px;
align-items:flex-start;
min-height:112px;
border:1px solid rgba(255,255,255,.12);
border-radius:18px;
padding:18px;
background:rgba(255,255,255,.08);
}
body.layout-02.industry-logistics #about li b{color:#fff}
body.layout-02.industry-logistics #about li p{margin:4px 0 0;color:rgba(255,255,255,.68)}
body.layout-02.industry-logistics #about .icon-box{
background:rgba(255,255,255,.12);
color:#93c5fd;
}

body.layout-03.industry-logistics .hero-mini-cards{
grid-template-columns:repeat(2,minmax(0,240px));
justify-content:center;
gap:16px;
}
body.layout-03.industry-logistics .hero-mini-cards .mc{
display:grid;
grid-template-columns:48px 1fr;
gap:14px;
align-items:center;
min-height:88px;
border:1px solid rgba(37,99,235,.14);
border-radius:22px;
padding:18px;
background:rgba(255,255,255,.78);
box-shadow:0 18px 44px rgba(30,64,175,.09);
backdrop-filter:blur(16px);
}
body.layout-03.industry-logistics .hero-mini-cards .mc .icon-box{
margin:0;
border-radius:16px;
background:linear-gradient(135deg,rgba(37,99,235,.12),rgba(23,198,163,.16));
}
body.layout-03.industry-logistics .hero-mini-cards .mc b{
color:#1f2a44;
font-size:1rem;
}
body.layout-03.industry-logistics .ops-board,
body.layout-05.industry-logistics .ops-board{
overflow:hidden;
gap:0;
padding:0;
border:1px solid rgba(37,99,235,.12);
background:rgba(255,255,255,.94);
box-shadow:0 22px 58px rgba(16,34,70,.18);
}
body.layout-03.industry-logistics .ops-board::before,
body.layout-05.industry-logistics .ops-board::before{
display:none;
}
body.layout-03.industry-logistics .ops-row,
body.layout-05.industry-logistics .ops-row{
grid-template-columns:38px 1fr auto;
padding:14px 16px;
border-bottom:1px solid rgba(219,231,245,.86);
}
body.layout-03.industry-logistics .ops-pin,
body.layout-05.industry-logistics .ops-pin{
width:30px;
height:30px;
border-radius:10px;
font-size:.72rem;
}
body.layout-03.industry-logistics .ops-metric,
body.layout-05.industry-logistics .ops-metric{
padding:12px;
background:#f4f8ff;
}
body.layout-03.industry-logistics .ops-metric span,
body.layout-05.industry-logistics .ops-metric span{
background:#fff;
box-shadow:inset 0 0 0 1px rgba(219,231,245,.9);
}
body.layout-03.industry-logistics .layout-brief,
body.layout-05.industry-logistics .layout-brief{
background:linear-gradient(180deg,#fff 0%,#f5f9ff 100%);
}
body.layout-03.industry-logistics .layout-brief .brief-card,
body.layout-05.industry-logistics .layout-brief .brief-card{
align-items:flex-start;
justify-content:space-between;
min-height:178px;
border-color:rgba(37,99,235,.12);
background:linear-gradient(180deg,#fff,#f9fcff);
box-shadow:0 16px 40px rgba(30,64,175,.06);
}
body.layout-03.industry-logistics .layout-brief .brief-card.accent,
body.layout-05.industry-logistics .layout-brief .brief-card.accent{
background:linear-gradient(135deg,#2563eb,#0ea5e9);
}
body.layout-03.industry-logistics .route-flow,
body.layout-05.industry-logistics .route-flow{
padding:70px 0;
background:
radial-gradient(circle at 15% 20%,rgba(23,198,163,.1),transparent 28%),
linear-gradient(180deg,#f5f9ff 0%,#fff 100%);
}
body.layout-03.industry-logistics .iso-lane,
body.layout-05.industry-logistics .iso-lane{
gap:14px;
border:1px solid rgba(219,231,245,.9);
border-radius:26px;
padding:16px;
background:#fff;
box-shadow:0 20px 55px rgba(30,64,175,.07);
}
body.layout-03.industry-logistics .iso-lane::before,
body.layout-05.industry-logistics .iso-lane::before{
left:8%;
right:8%;
top:50%;
height:1px;
opacity:.28;
}
body.layout-03.industry-logistics .iso-step,
body.layout-05.industry-logistics .iso-step{
min-height:166px;
border:0;
border-radius:20px;
background:#f8fbff;
box-shadow:none;
}
body.layout-03.industry-logistics #about{
background:linear-gradient(180deg,#fff 0%,#eef6ff 100%);
}
body.layout-03.industry-logistics #about .about-top{
align-items:center;
border:1px solid rgba(219,231,245,.95);
border-radius:28px;
padding:42px;
background:#fff;
box-shadow:0 22px 58px rgba(30,64,175,.08);
}
body.layout-03.industry-logistics #about .statement{
border:0;
border-radius:22px;
padding:28px;
background:linear-gradient(135deg,#10213f,#143c65);
box-shadow:0 22px 52px rgba(16,33,63,.18);
}
body.layout-03.industry-logistics #about .statement strong{color:#93c5fd}
body.layout-03.industry-logistics #about .statement p{color:rgba(255,255,255,.74)}
body.layout-03.industry-logistics #about .grid.three{
margin-top:24px;
}
body.layout-03.industry-logistics .stat-cards .sc,
body.layout-05.industry-logistics .stat-cards .sc{
position:relative;
overflow:hidden;
border-color:rgba(37,99,235,.12);
background:linear-gradient(180deg,#fff,#f7fbff);
}
body.layout-03.industry-logistics .stat-cards .sc::after,
body.layout-05.industry-logistics .stat-cards .sc::after{
position:absolute;
right:-28px;
bottom:-28px;
width:90px;
height:90px;
border-radius:28px;
background:rgba(37,99,235,.07);
content:"";
}
body.layout-04.industry-logistics .cta-band{
background:linear-gradient(135deg,#0f172a,#1d4ed8);
box-shadow:0 24px 70px rgba(29,78,216,.22);
}
body.layout-04.industry-logistics .cta-band .button{
border:2px solid #fff;
color:#0f172a;
background:#fff;
box-shadow:0 16px 36px rgba(255,255,255,.18);
}
body.layout-04.industry-logistics .cta-band .button:hover{
box-shadow:0 20px 42px rgba(255,255,255,.26);
}
body.layout-05.industry-logistics .logos-strip{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
gap:12px;
justify-content:stretch;
}
body.layout-05.industry-logistics .logos-strip i{
display:grid;
min-height:58px;
place-items:center;
border:1px solid rgba(219,231,245,.95);
border-radius:16px;
padding:0 14px;
color:#334155;
background:#fff;
box-shadow:0 10px 26px rgba(30,64,175,.05);
font-size:.95rem;
letter-spacing:.02em;
opacity:1;
}
@media(max-width:900px){
body.layout-02.industry-logistics #about .about-hl,
body.layout-03.industry-logistics #about .about-top{
grid-template-columns:1fr;
}
body.layout-02.industry-logistics #about ul{
grid-template-columns:1fr;
}
body.layout-03.industry-logistics .iso-lane,
body.layout-05.industry-logistics .iso-lane{
grid-template-columns:repeat(2,minmax(0,1fr));
}
body.layout-03.industry-logistics .iso-lane::before,
body.layout-05.industry-logistics .iso-lane::before{
display:none;
}
}
@media(max-width:640px){
body.layout-03.industry-logistics .hero-mini-cards{
grid-template-columns:1fr;
}
body.layout-03.industry-logistics .iso-lane,
body.layout-05.industry-logistics .iso-lane{
grid-template-columns:1fr;
padding:12px;
}
body.layout-03.industry-logistics #about .about-top{
padding:24px;
}
body.layout-05.industry-logistics .logos-strip{
grid-template-columns:repeat(2,minmax(0,1fr));
}
}
