@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

:root{
  --navy-900:#081226;
  --navy-800:#0c1c3d;
  --navy-700:#122a52;
  --orange:#f4711f;
  --orange-light:#ff9147;
  --gray-50:#f7f8fa;
  --gray-100:#eef0f4;
  --gray-200:#e2e5eb;
  --gray-500:#6b7380;
  --gray-700:#3c414b;
  --white:#ffffff;
  --radius:10px;
  --container:1280px;
  --shadow: 0 8px 24px rgba(8,18,38,0.08);
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Pretendard', -apple-system, sans-serif;
  color:var(--gray-700);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
:focus-visible{outline:3px solid var(--orange);outline-offset:2px;}

.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:700;letter-spacing:.04em;
  color:var(--orange);text-transform:uppercase;margin-bottom:10px;
}
.eyebrow::before{content:"";width:16px;height:2px;background:var(--orange);display:inline-block;}


/* Business detail section numbers: enlarged text (not an image) */
.business-detail-number{
  font-size:39px;
  line-height:1;
  font-weight:900;
  letter-spacing:-0.03em;
  color:var(--orange);
  margin-bottom:16px;
}
.business-detail-number::before{
  width:30px;
  height:3px;
}
@media (max-width:720px){
  .business-detail-number{font-size:32px;margin-bottom:13px;}
  .business-detail-number::before{width:24px;}
}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:100;background:var(--white);
  border-bottom:1px solid var(--gray-200);
}
.header-inner{
  max-width:var(--container);margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;color:var(--navy-800);}
.logo .mark{
  width:40px;height:40px;border-radius:50%;
  background:conic-gradient(from 220deg, var(--orange), var(--orange-light), var(--navy-800));
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:18px;font-weight:900;
}
.mark-img{width:58px;height:58px;object-fit:contain;flex:none;}
.logo .name{font-size:15px;line-height:1.3;}
.logo .name small{display:block;font-size:10px;font-weight:600;color:var(--gray-500);letter-spacing:.06em;}
.logo .name .tagline{display:block;font-size:10px;font-weight:600;color:var(--orange);}

.main-nav{display:flex;gap:34px;}
.main-nav a{
  font-size:15px;font-weight:600;color:var(--navy-800);
  display:flex;flex-direction:column;align-items:center;gap:3px;padding:4px 0;
  border-bottom:2px solid transparent;
}
.main-nav a small{font-size:10px;font-weight:500;color:var(--gray-500);letter-spacing:.04em;}
.main-nav a.active, .main-nav a:hover{border-bottom-color:var(--orange);color:var(--orange);}

.header-actions{display:flex;align-items:center;gap:18px;}
.lang-switch{display:flex;gap:6px;font-size:13px;font-weight:700;color:var(--gray-500);}
.lang-switch .active{color:var(--navy-800);}
.btn-contact{
  background:var(--orange);color:#fff;font-weight:700;font-size:14px;
  padding:11px 18px;border-radius:8px;display:flex;align-items:center;gap:8px;
  border:none;cursor:pointer;
}
.btn-contact:hover{background:#dd5f10;}
.nav-toggle{display:none;background:none;border:none;font-size:24px;color:var(--navy-800);cursor:pointer;}

/* ---------- Hero ---------- */
.hero{
  position:relative;color:#fff;padding:64px 0 74px;overflow:hidden;
  background:
    linear-gradient(100deg, rgba(8,18,38,.92) 10%, rgba(8,18,38,.55) 45%, rgba(8,18,38,.15) 75%),
    linear-gradient(180deg, #35507e, #0d213f 60%);
}
.hero-content{max-width:640px;}
.hero h1{font-size:42px;font-weight:800;line-height:1.28;margin-bottom:16px;}
.hero h1 .accent{color:var(--orange-light);}
.hero p.lead{font-size:17px;font-weight:600;margin-bottom:12px;opacity:.95;}
.hero p.sub{font-size:14px;color:#c7cfe0;margin-bottom:26px;}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;}
.btn{
  display:inline-flex;align-items:center;gap:10px;padding:14px 24px;
  border-radius:9px;font-weight:700;font-size:14px;border:1px solid transparent;cursor:pointer;
}
.btn-primary{background:var(--orange);color:#fff;}
.btn-primary:hover{background:#dd5f10;}
.btn-ghost{background:rgba(255,255,255,.08);color:#fff;border-color:rgba(255,255,255,.35);}
.btn-ghost:hover{background:rgba(255,255,255,.18);}
.hero-dots{margin-top:30px;display:flex;align-items:center;gap:14px;font-size:13px;color:#9fa9c2;font-weight:700;}
.hero-dots .bar{width:70px;height:2px;background:rgba(255,255,255,.25);position:relative;}
.hero-dots .bar::before{content:"";position:absolute;left:0;top:0;width:33%;height:100%;background:var(--orange);}

/* ---------- Section basics ---------- */
.section{padding:64px 0;}
.section-tight{padding:44px 0;}
.section-head{max-width:640px;margin-bottom:32px;}
.section-head h2{font-size:30px;font-weight:800;color:var(--navy-800);}
.bg-gray{background:var(--gray-50);}
.bg-navy{background:var(--navy-800);color:#fff;}

/* ---------- Business grid ---------- */
.biz-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
.biz-card{
  background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;transition:transform .2s, box-shadow .2s;
}
.biz-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);}
.biz-card .num{font-size:13px;font-weight:800;color:var(--orange);padding:20px 18px 0;}
.biz-card h3{font-size:16px;font-weight:800;color:var(--navy-800);padding:6px 18px 2px;}
.biz-card .en{font-size:11.5px;color:var(--gray-500);padding:0 18px 16px;font-weight:600;}
.biz-card .thumb{
  height:180px;overflow:hidden;
  background:linear-gradient(135deg,#173058,#0a1830);
  display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.35);font-size:12px;
}
.biz-card .thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.biz-card .link{
  margin-top:auto;font-size:12.5px;font-weight:700;color:var(--navy-800);
  padding:14px 18px;border-top:1px solid var(--gray-100);display:flex;justify-content:space-between;align-items:center;
}

/* ---------- Values strip ---------- */
.values-strip{background:var(--navy-800);color:#fff;padding:34px 0;}
.values-row{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;}
.value-item{display:flex;align-items:center;gap:12px;flex:1;min-width:200px;}
.value-item .ic{width:34px;height:34px;flex:none;}
.value-item h4{font-size:14px;font-weight:700;}
.value-item p{font-size:12px;color:#a9b2c6;}

/* ---------- Stats ---------- */
.stats-bar{background:var(--navy-900);color:#fff;}
.stats-row{display:flex;justify-content:space-between;padding:26px 0;flex-wrap:wrap;gap:18px;}
.stat{display:flex;align-items:center;gap:12px;}
.stat .num{font-size:26px;font-weight:800;color:var(--orange-light);}
.stat .label-en{font-size:11px;color:#9fa9c2;font-weight:600;}
.stat .label-kr{font-size:12.5px;font-weight:700;}

/* ---------- Footer ---------- */
.site-footer{background:var(--gray-50);border-top:1px solid var(--gray-200);padding:48px 0 28px;}
.footer-top{display:flex;justify-content:space-between;gap:40px;flex-wrap:wrap;margin-bottom:32px;}
.footer-brand p{font-size:13px;color:var(--gray-500);margin-top:10px;max-width:300px;}
.footer-offices{display:flex;gap:60px;flex-wrap:wrap;font-size:13px;}
.footer-offices h5{font-size:13px;font-weight:800;color:var(--navy-800);margin-bottom:8px;}
.footer-offices p{color:var(--gray-500);margin-bottom:3px;}
.footer-actions{display:flex;gap:12px;}
.footer-actions a{
  background:#fff;border:1px solid var(--gray-200);border-radius:8px;padding:14px 20px;
  font-size:12.5px;font-weight:700;color:var(--navy-800);text-align:center;flex:1;min-width:120px;
}
.footer-actions a:hover{border-color:var(--orange);color:var(--orange);}
.footer-bottom{border-top:1px solid var(--gray-200);padding-top:20px;font-size:12px;color:var(--gray-500);}

/* ---------- Page header (inner pages) ---------- */
.page-hero{
  background:linear-gradient(100deg, rgba(8,18,38,.94), rgba(8,18,38,.55)), linear-gradient(180deg,#35507e,#0d213f 60%);
  color:#fff;padding:64px 0;
}
.page-hero .eyebrow{color:var(--orange-light);}
.page-hero h1{font-size:34px;font-weight:800;line-height:1.3;}

/* ---------- Cards / generic ---------- */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:32px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.card{background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius);padding:24px;}
.card h4{color:var(--navy-800);font-weight:800;font-size:15px;margin-bottom:6px;}
.card p{font-size:13px;color:var(--gray-500);}

.tag-model{border-radius:var(--radius);padding:22px;border:1px solid var(--gray-200);}
.tag-model .badge{
  display:inline-block;background:var(--orange);color:#fff;font-weight:800;font-size:13px;
  padding:8px 16px;border-radius:6px;margin-bottom:14px;
}
.tag-model.alt .badge{background:var(--navy-800);}
.tag-model ul{margin-top:14px;display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.tag-model li{font-size:12.5px;color:var(--gray-500);}
.tag-model li b{display:block;color:var(--navy-800);font-size:13px;}
.tag-model .note{
  margin-top:16px;background:var(--gray-50);border-radius:8px;padding:12px 14px;font-size:12.5px;color:var(--gray-700);
}

.split-photo{
  height:260px;border-radius:var(--radius);overflow:hidden;
  background:linear-gradient(135deg,#1c3a68,#0a1830);
  display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.35);font-size:13px;
}
.split-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.mini-photo{border-radius:8px;overflow:hidden;height:90px;}
.mini-photo img{width:100%;height:100%;object-fit:cover;display:block;}

/* 03 Ground-mounted solar gallery: increased image window for clearer viewing */
.land-solar-gallery .land-solar-photo{
  height:240px;
  border-radius:0;
  background:#eef2f6;
}
.land-solar-gallery .land-solar-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  image-rendering:auto;
}
.land-solar-gallery .card:first-child .land-solar-photo img{
  object-position:center 48%;
}

.tab-nav{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:40px;}
.tab-nav a{
  padding:10px 18px;border-radius:999px;border:1px solid var(--gray-200);font-size:13px;font-weight:700;color:var(--gray-500);
}
.tab-nav a.active{background:var(--navy-800);border-color:var(--navy-800);color:#fff;}

.esg-col h3{font-size:20px;font-weight:800;margin-bottom:14px;}
.esg-col.e h3{color:#2f9e59;}
.esg-col.s h3{color:#2f6ea3;}
.esg-col.g h3{color:var(--orange);}
.esg-col li{display:flex;gap:10px;font-size:13px;color:var(--gray-500);margin-bottom:14px;}
.esg-col li b{color:var(--navy-800);display:block;font-size:13.5px;font-weight:700;}

.contact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.contact-card{
  background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius);padding:28px 20px;text-align:center;
}
.contact-card .ic{font-size:26px;margin-bottom:12px;}
.contact-card h4{font-size:14px;font-weight:800;color:var(--navy-800);}
.contact-card p{font-size:11.5px;color:var(--gray-500);}

.form-wrap{max-width:640px;}
.form-row{margin-bottom:16px;}
.form-row label{display:block;font-size:13px;font-weight:700;color:var(--navy-800);margin-bottom:6px;}
.form-row input, .form-row textarea, .form-row select{
  width:100%;padding:12px 14px;border:1px solid var(--gray-200);border-radius:8px;font-size:14px;font-family:inherit;
}
.form-row textarea{min-height:120px;resize:vertical;}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .biz-grid{grid-template-columns:repeat(2,1fr);}
  .grid-3, .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-2{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:repeat(2,1fr);}
  .main-nav{display:none;}
  .nav-toggle{display:block;}
  .hero h1{font-size:32px;}
}
@media (max-width: 560px){
  .biz-grid{grid-template-columns:1fr;}
  .grid-3, .grid-4, .contact-grid{grid-template-columns:1fr;}
  .values-row, .stats-row{flex-direction:column;}
  .footer-offices{gap:24px;}
}

/* ---------- Korean / English bilingual business details ---------- */
.desc-ko{font-size:14px;line-height:1.75;color:var(--gray-700);margin-bottom:7px;}
.desc-en{font-size:12.5px;line-height:1.65;color:var(--gray-500);font-weight:500;margin-bottom:20px;}
.tag-model > .desc-ko{margin-bottom:5px;}
.tag-model > .desc-en{margin-bottom:0;}
.tag-model li span{display:block;margin-top:2px;font-size:11.5px;line-height:1.45;color:var(--gray-500);}
.tag-model .note span{display:inline-block;margin-top:5px;font-size:11.5px;line-height:1.55;color:var(--gray-500);}
.bilingual-card{padding:15px 16px;}
.bilingual-card p{font-size:12.5px;line-height:1.55;color:var(--gray-600);}
.bilingual-card p > b{display:block;color:var(--navy-800);font-size:13px;margin-bottom:3px;}
.bilingual-card p > span{display:block;margin-top:8px;padding-top:8px;border-top:1px solid var(--gray-200);font-size:11.5px;line-height:1.5;color:var(--gray-500);}
.bilingual-card p > span strong{display:block;color:var(--navy-700);font-size:11.8px;margin-bottom:2px;}
#area-05 .card > p[lang="en"]{margin-top:4px;font-size:11.5px;line-height:1.45;color:var(--gray-500);}
@media (max-width:560px){
  .desc-ko{font-size:13.5px;}
  .desc-en{font-size:12px;}
  .tag-model ul{grid-template-columns:1fr;}
}

/* ---------- KET Premium final refinements ---------- */
.site-header .mark-img{width:68px;height:68px;transition:width .25s ease,height .25s ease;}
.header-inner{padding-top:10px;padding-bottom:10px;}

.hero{
  height:65vh;
  min-height:520px;
  max-height:680px;
  padding:46px 0 52px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(100deg, rgba(8,18,38,.92) 8%, rgba(8,18,38,.62) 48%, rgba(8,18,38,.28) 100%),
    url('../images/biz-01-rooftop.png') center 58% / cover no-repeat;
}
.hero-content{max-width:720px;}
.hero-brand{display:flex;align-items:center;gap:14px;margin-bottom:12px;filter:drop-shadow(0 10px 24px rgba(36,142,227,.24));}
.hero-brand img{width:76px;height:76px;object-fit:contain;}
.hero-brand strong{font-size:58px;line-height:1;font-weight:900;letter-spacing:.04em;color:#fff;}
.hero p.lead span{font-size:14px;font-weight:500;color:#dbe6f7;}

.biz-card .num{
  font-size:39px;
  line-height:1;
  letter-spacing:-.04em;
  padding:20px 18px 4px;
  color:var(--orange);
}
.biz-card h3{padding-top:2px;}
.biz-card .thumb{height:210px;}

.process-showcase{background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);}
.process-head{max-width:940px;margin-left:auto;margin-right:auto;text-align:center;}
.process-head .eyebrow{justify-content:center;}
.process-head h2{font-size:30px;line-height:1.35;}
.process-copy{margin-top:12px;font-size:14px;color:var(--gray-700);}
.process-copy span{display:inline-block;margin-top:4px;font-size:12.5px;color:var(--gray-500);}
.process-visual{margin:24px auto 0;border-radius:16px;overflow:hidden;background:#fff;box-shadow:0 18px 50px rgba(8,18,38,.12);border:1px solid var(--gray-200);}
.process-visual img{width:100%;height:auto;display:block;}

@media (max-width:980px){
  .site-header .mark-img{width:62px;height:62px;}
  .hero{height:auto;min-height:500px;max-height:none;}
  .hero-brand img{width:64px;height:64px;}
  .hero-brand strong{font-size:48px;}
  .biz-card .num{font-size:36px;}
}
@media (max-width:560px){
  .site-header .mark-img{width:58px;height:58px;}
  .header-actions{display:none;}
  .hero{min-height:470px;padding:38px 0 42px;background-position:62% center;}
  .hero-brand img{width:54px;height:54px;}
  .hero-brand strong{font-size:40px;}
  .hero h1{font-size:29px;}
  .hero p.sub br{display:none;}
  .biz-card .num{font-size:39px;}
  .process-head h2{font-size:23px;}
  .process-visual{border-radius:10px;}
}

/* Manufacturing process cards */
.mfg-process-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:12px}
.mfg-process-card{min-width:0;overflow:hidden;background:#fff;border:1px solid #dfe6ef;border-radius:12px;box-shadow:0 8px 22px rgba(9,38,79,.08);transition:transform .25s ease,box-shadow .25s ease}
.mfg-process-card:hover{transform:translateY(-5px);box-shadow:0 16px 32px rgba(9,38,79,.14)}
.mfg-process-photo{height:132px;overflow:hidden;background:#edf2f7}
.mfg-process-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.mfg-process-card:hover .mfg-process-photo img{transform:scale(1.045)}
.mfg-process-body{position:relative;padding:15px 12px 16px 56px;min-height:154px}
.mfg-step{position:absolute;left:12px;top:15px;display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:linear-gradient(135deg,#0a55b8,#052e73);color:#fff;font-size:17px;font-weight:900}
.mfg-process-body h3{margin:0 0 2px;color:var(--navy-900);font-size:15px;line-height:1.3;white-space:nowrap}
.mfg-process-body .mfg-en{margin:0 0 10px;color:#66758a;font-size:10.5px;font-weight:600;line-height:1.35}
.mfg-process-body>p:last-child{margin:0 0 0 -44px;color:#4a5568;font-size:11.5px;line-height:1.55}
@media (max-width:1100px){.mfg-process-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.mfg-process-photo{height:180px}.mfg-process-body{padding:18px 16px 20px 72px;min-height:145px}.mfg-step{left:16px;top:18px;width:44px;height:44px;font-size:20px}.mfg-process-body h3{font-size:17px}.mfg-process-body .mfg-en{font-size:12px}.mfg-process-body>p:last-child{margin-left:-56px;font-size:13px}}
@media (max-width:720px){.mfg-process-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.mfg-process-photo{height:150px}}
@media (max-width:480px){.mfg-process-grid{grid-template-columns:1fr}.mfg-process-photo{height:210px}.mfg-process-body{padding-left:78px}.mfg-process-body>p:last-child{margin-left:-60px}}

/* Final V3 homepage cleanup */
.site-header .mark-img{width:66px;height:66px;}
.hero-brand img{width:58px;height:58px;}
.hero-brand strong{font-size:46px;}
@media (max-width:980px){
  .site-header .mark-img{width:60px;height:60px;}
  .hero-brand img{width:54px;height:54px;}
  .hero-brand strong{font-size:42px;}
}
@media (max-width:560px){
  .site-header .mark-img{width:52px;height:52px;}
  .hero-brand img{width:48px;height:48px;}
  .hero-brand strong{font-size:38px;}
}


/* Final homepage cleanup: remove hero overlay cards and duplicate center logo */
.hero-brand,
.hero .values-strip,
.hero .values-row,
.hero .value-item,
.hero .feature-cards,
.hero .hero-cards,
.hero .service-cards {display:none !important;}
.hero{overflow:hidden;}
.hero-content{padding-top:0;}


/* ---------- Final V5: homepage hero matched to approved reference ---------- */
body.homepage-reference .hero,
.hero{
  height:512px;
  min-height:512px;
  max-height:512px;
  padding:0;
  display:flex;
  align-items:center;
  background:linear-gradient(110deg,#09152b 0%,#102442 52%,#2e4a79 100%);
}
.hero .container{width:100%;}
.hero-content{max-width:720px;padding-top:0;}
.hero .eyebrow{margin-bottom:13px;font-size:13px;text-transform:none;letter-spacing:0;color:#ff7a2a;}
.hero h1{font-size:44px;line-height:1.27;letter-spacing:-.035em;margin-bottom:17px;}
.hero p.lead{font-size:17px;line-height:1.45;font-weight:700;margin-bottom:14px;color:#fff;opacity:1;}
.hero p.sub{font-size:14px;line-height:1.65;color:#d2d9e6;margin-bottom:27px;}
.hero-ctas{gap:14px;}
.hero .btn{padding:14px 23px;min-height:52px;}
.hero-dots{margin-top:29px;}

@media (max-width:980px){
  .hero{height:500px;min-height:500px;max-height:none;}
  .hero h1{font-size:36px;}
  .hero-content{max-width:660px;}
}
@media (max-width:560px){
  .hero{height:auto;min-height:500px;padding:42px 0;}
  .hero h1{font-size:30px;}
  .hero p.lead{font-size:15px;}
  .hero p.sub{font-size:13px;}
  .hero .btn{min-height:48px;padding:12px 18px;}
}

/* Final master refinements */
.header-inner{gap:32px;}
.main-nav{margin-left:auto;}
.header-actions{margin-left:18px;}
.footer-top{grid-template-columns:minmax(240px,.9fr) minmax(520px,1.7fr);gap:40px;align-items:start;}
.footer-offices{grid-template-columns:repeat(2,minmax(0,1fr));gap:36px;}
@media(max-width:1100px){
  .header-inner{gap:18px;}
  .main-nav{gap:22px;}
  .footer-top{grid-template-columns:1fr;gap:24px;}
}
@media(max-width:760px){
  .footer-offices{grid-template-columns:1fr;gap:24px;}
}

/* UPDATED 14: seven organization logos always remain on one line */
.partner-logo-strip{
  position:relative;
  z-index:3;
  margin-top:0;
  padding:14px 0 18px;
}
.partner-logo-strip .container{padding-left:28px;padding-right:28px;}
.partner-logo-row{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr)) minmax(0,1.55fr);
  align-items:center;
  gap:6px;
  min-height:70px;
  padding:10px 12px;
  border:1px solid rgba(209,220,235,.9);
  border-radius:16px;
  background:rgba(255,255,255,.96);
  box-shadow:0 14px 38px rgba(9,27,58,.12);
  backdrop-filter:blur(12px);
  overflow:hidden;
}
.partner-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  height:46px;
  padding:6px 7px;
  border-right:1px solid #e9eef5;
  overflow:hidden;
}
.partner-logo:last-child{border-right:0;}
.partner-logo-onerec{color:inherit;text-decoration:none;}
.partner-logo-onerec img{max-height:27px;}
.partner-logo img{
  display:block;
  max-width:100%;
  max-height:30px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:saturate(.96);
  transition:transform .25s ease,filter .25s ease,opacity .25s ease;
}
.partner-logo-dark{
  margin:0 2px;
  border-radius:8px;
  background:#071536;
  border-right:0;
}
.partner-logo-dark img{max-height:27px;}
.partner-logo:hover img{transform:translateY(-2px) scale(1.035);filter:saturate(1.08);}

@media(max-width:980px){
  .partner-logo-strip{margin-top:0;}
  .partner-logo-strip .container{padding-left:16px;padding-right:16px;}
  .partner-logo-row{
    grid-template-columns:repeat(6,minmax(0,1fr)) minmax(0,1.55fr);
    gap:3px;
    min-height:58px;
    padding:8px 7px;
  }
  .partner-logo{height:40px;padding:5px 4px;border-bottom:0;}
  .partner-logo img{max-height:25px;}
  .partner-logo-dark img{max-height:22px;}
  .partner-logo-onerec img{max-height:21px;}
}
@media(max-width:560px){
  .partner-logo-strip{margin-top:0;padding:10px 0 8px;}
  .partner-logo-strip .container{padding-left:7px;padding-right:7px;}
  .partner-logo-row{
    grid-template-columns:repeat(6,minmax(0,1fr)) minmax(0,1.65fr);
    gap:1px;
    min-height:45px;
    border-radius:10px;
    padding:5px 4px;
  }
  .partner-logo{height:34px;padding:3px 2px;border-right:1px solid #eef2f7;}
  .partner-logo img{max-height:17px;}
  .partner-logo-dark{margin:0;border-radius:5px;}
  .partner-logo-dark img{max-height:15px;}
  .partner-logo-onerec img{max-height:14px;}
}


/* Production readiness */
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.privacy-consent{display:block;font-size:12px;color:var(--gray-600);margin:4px 0 16px}
.privacy-consent input{width:auto;margin-right:6px}
.privacy-consent a,.footer-bottom a{color:inherit;text-decoration:underline;text-underline-offset:3px}
:focus-visible{outline:3px solid #f59e0b;outline-offset:3px}
img{max-width:100%;height:auto}

@media (max-width: 980px){
  .land-solar-gallery .land-solar-photo{height:220px;}
}
@media (max-width: 640px){
  .land-solar-gallery .land-solar-photo{height:210px;}
}
