/* ==========================================================================
   Cigna Capital — Global Stylesheet
   Palette derived from brand logo + thecignagroup.com reference:
   navy (trust/authority), leaf green (accent), warm neutrals
   ========================================================================== */

:root{
  --navy-900:#0a1a33;
  --navy-800:#0f2547;
  --navy-700:#15315f;
  --navy-600:#1c3f79;
  --green-600:#3f8f2c;
  --green-500:#5cab34;
  --green-400:#7cc142;
  --gold-500:#b08d57;
  --white:#ffffff;
  --gray-50:#f6f8fb;
  --gray-100:#eef1f6;
  --gray-200:#dde3ec;
  --gray-400:#93a0b4;
  --gray-600:#5c6b81;
  --gray-800:#2b3648;
  --ink:#0c1a2e;

  --font-serif:'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;

  --container:1240px;
  --radius:6px;
  --shadow-sm:0 1px 3px rgba(10,26,51,.08);
  --shadow-md:0 8px 24px rgba(10,26,51,.10);
  --shadow-lg:0 20px 48px rgba(10,26,51,.16);
  --transition:.25s ease;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{font-family:var(--font-serif);font-weight:700;color:var(--navy-900);line-height:1.2;margin:0 0 .5em;}
p{margin:0 0 1em;}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
section{padding:88px 0;}
@media (max-width:768px){section{padding:56px 0;}}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--green-600);font-weight:600;margin-bottom:14px;
}
.eyebrow::before{content:"";width:28px;height:2px;background:var(--green-500);display:inline-block;}

.section-head{max-width:720px;margin-bottom:48px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head p{color:var(--gray-600);font-size:1.05rem;}

/* language visibility ------------------------------------------------- */
[lang-en], [lang-zh]{display:none;}
html[data-lang="en"] [lang-en]{display:revert;}
html[data-lang="zh"] [lang-zh]{display:revert;}
html[data-lang="en"] span[lang-en],
html[data-lang="en"] a[lang-en],
html[data-lang="en"] strong[lang-en]{display:inline;}
html[data-lang="zh"] span[lang-zh],
html[data-lang="zh"] a[lang-zh],
html[data-lang="zh"] strong[lang-zh]{display:inline;}
html[data-lang="en"] [lang-zh]{display:none !important;}
html[data-lang="zh"] [lang-en]{display:none !important;}
html:not([data-lang]) [lang-en]{display:revert;}
html:not([data-lang]) [lang-zh]{display:none !important;}

/* buttons ---------------------------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 30px;border-radius:2px;font-weight:600;font-size:.95rem;
  border:1px solid transparent;cursor:pointer;transition:all var(--transition);
  white-space:nowrap;letter-spacing:.01em;
}
.btn-primary{background:var(--green-500);color:var(--white);}
.btn-primary:hover{background:var(--green-600);transform:translateY(-1px);box-shadow:var(--shadow-sm);}
.btn-outline{background:transparent;color:var(--white);border-color:rgba(255,255,255,.55);}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:var(--white);}
.btn-navy{background:var(--navy-800);color:var(--white);}
.btn-navy:hover{background:var(--navy-900);}
.btn-ghost-navy{background:transparent;color:var(--navy-800);border-color:var(--navy-800);}
.btn-ghost-navy:hover{background:var(--navy-800);color:var(--white);}
.btn-sm{padding:10px 20px;font-size:.85rem;}

/* header ------------------------------------------------------------------ */
.site-header{
  position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.97);
  backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid var(--gray-200);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 24px;max-width:var(--container);margin:0 auto;gap:20px;}
.brand{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.brand{padding:4px 0;}
.brand img{height:62px;width:auto;display:block;}
.main-nav{display:flex;align-items:center;gap:6px;flex:1;justify-content:center;}
.main-nav > ul{display:flex;gap:2px;}
.main-nav a.nav-link{
  display:block;padding:10px 14px;font-size:.92rem;font-weight:500;color:var(--navy-800);
  border-radius:3px;transition:color var(--transition),background var(--transition);
  white-space:nowrap;
}
.main-nav a.nav-link:hover,.main-nav a.nav-link.active{color:var(--green-600);}
.has-dropdown{position:relative;}
.dropdown{
  position:absolute;top:100%;left:0;min-width:240px;background:var(--white);
  border:1px solid var(--gray-200);border-radius:var(--radius);box-shadow:var(--shadow-md);
  padding:8px;opacity:0;visibility:hidden;transform:translateY(6px);
  transition:all var(--transition);
}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0);}
.dropdown a{display:block;padding:10px 12px;border-radius:4px;font-size:.88rem;color:var(--gray-800);}
.dropdown a:hover{background:var(--gray-50);color:var(--green-600);}
.header-actions{display:flex;align-items:center;gap:14px;flex-shrink:0;}
.lang-toggle{
  display:flex;border:1px solid var(--gray-200);border-radius:20px;overflow:hidden;font-size:.78rem;font-weight:600;
}
.lang-toggle button{
  padding:6px 14px;background:transparent;border:none;cursor:pointer;color:var(--gray-600);font-family:var(--font-sans);
  transition:all var(--transition);
}
.lang-toggle button.active{background:var(--navy-800);color:var(--white);}
.header-cta{display:inline-flex;}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:6px;flex-direction:column;gap:5px;}
.nav-toggle span{width:24px;height:2px;background:var(--navy-900);display:block;transition:all var(--transition);}

@media (max-width:1080px){
  .main-nav{
    position:fixed;inset:0 0 0 auto;width:min(320px,86vw);height:100vh;background:var(--navy-900);
    flex-direction:column;justify-content:flex-start;padding:90px 28px 28px;transform:translateX(100%);
    transition:transform var(--transition);overflow-y:auto;
  }
  .main-nav.open{transform:translateX(0);}
  .main-nav > ul{flex-direction:column;width:100%;gap:0;}
  .main-nav a.nav-link{color:var(--white);padding:14px 4px;border-bottom:1px solid rgba(255,255,255,.1);}
  .dropdown{position:static;opacity:1;visibility:visible;transform:none;background:rgba(255,255,255,.04);border:none;box-shadow:none;display:none;margin:0 0 6px;}
  .has-dropdown.open .dropdown{display:block;}
  .header-cta{display:none;}
  .nav-toggle{display:flex;}
}

/* hero --------------------------------------------------------------------- */
.hero{
  position:relative;
  background:
    linear-gradient(100deg, rgba(10,26,51,.94) 0%, rgba(10,26,51,.85) 44%, rgba(10,26,51,.4) 80%, rgba(10,26,51,.08) 100%),
    url("../Images/hero-bg.jpg") center 58% / cover no-repeat;
  color:var(--white);padding:120px 0 140px;overflow:hidden;
}
.hero::before{
  content:"";position:absolute;left:0;right:0;bottom:0;height:230px;z-index:0;pointer-events:none;
  background:linear-gradient(to top, rgba(10,26,51,.95) 0%, rgba(10,26,51,.65) 45%, transparent 100%);
}
.hero > .container{margin-left:max(0px, calc((100vw - var(--container)) / 2 + 50px));}
.hero-inner{position:relative;z-index:2;max-width:760px;}

.hero-skyline{
  position:absolute;left:0;right:0;bottom:0;width:100%;height:200px;
  pointer-events:none;z-index:1;display:block;
}
@media (max-width:768px){.hero-skyline{height:120px;}}
.hero-skyline .sky-back{fill:#000;opacity:.25;mix-blend-mode:multiply;}
.hero-skyline .sky-front{fill:#000;opacity:.55;mix-blend-mode:multiply;}
.hero-skyline .sky-line{
  fill:none;stroke:var(--green-400);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;
  stroke-dasharray:4000;stroke-dashoffset:4000;
  animation:draw-skyline 2.2s cubic-bezier(.25,.7,.35,1) .3s forwards;
  filter:drop-shadow(0 0 6px rgba(124,193,66,.55));
}
.hero-skyline .sky-line-dot{
  fill:var(--green-400);opacity:0;
  animation:skyline-dot-in .4s ease-out 2.3s forwards, skyline-pulse 2.2s ease-in-out 2.7s infinite;
}
@keyframes draw-skyline{to{stroke-dashoffset:0;}}
@keyframes skyline-dot-in{to{opacity:1;}}
@keyframes skyline-pulse{
  0%,100%{filter:drop-shadow(0 0 3px rgba(124,193,66,.6));}
  50%{filter:drop-shadow(0 0 11px rgba(124,193,66,.95));}
}
@media (prefers-reduced-motion:reduce){
  .hero-skyline .sky-line{animation:none;stroke-dashoffset:0;}
  .hero-skyline .sky-line-dot{animation:none;opacity:1;}
}
.hero h1{color:var(--white);font-size:clamp(2.2rem,4.4vw,3.4rem);margin-bottom:22px;}
.hero p.lead{font-size:1.15rem;color:rgba(255,255,255,.82);max-width:600px;margin-bottom:36px;}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;padding:7px 16px;border:1px solid rgba(255,255,255,.25);
  border-radius:20px;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.85);
  margin-bottom:26px;
}
.hero-badge::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--green-400);}

.page-hero{
  position:relative;overflow:hidden;
  background:linear-gradient(120deg,var(--navy-900) 0%,var(--navy-800) 100%);color:var(--white);
  padding:74px 0 64px;
}
.page-hero > .container{position:relative;z-index:1;}
.page-hero h1{color:var(--white);font-size:clamp(1.9rem,3.6vw,2.6rem);margin-bottom:14px;}
.page-hero p{color:rgba(255,255,255,.78);max-width:640px;font-size:1.02rem;margin:0;}

/* per-service page-hero watermark — the service's own icon, oversized and faint */
.page-hero-icon{
  position:absolute;right:-50px;bottom:-70px;width:340px;height:340px;
  color:rgba(255,255,255,.07);pointer-events:none;z-index:0;
}
.page-hero-icon svg{width:100%;height:100%;display:block;}
.page-hero-icon svg *{stroke-width:.4;}
@media (max-width:768px){.page-hero-icon{width:220px;height:220px;right:-40px;bottom:-50px;}}

/* quiet, static skyline crop for the About page-hero — no draw-on animation */
.page-hero-skyline{
  position:absolute;left:0;right:0;bottom:0;width:100%;height:80px;
  pointer-events:none;z-index:0;
}
.page-hero-skyline .sky-back{fill:#000;opacity:.2;mix-blend-mode:multiply;}
.page-hero-skyline .sky-front{fill:#000;opacity:.4;mix-blend-mode:multiply;}
.page-hero-skyline .sky-line{fill:none;stroke:rgba(124,193,66,.5);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.page-hero-skyline .sky-line-dot{fill:rgba(124,193,66,.6);}
@media (max-width:768px){.page-hero-skyline{height:50px;}}
.breadcrumb{font-size:.82rem;color:rgba(255,255,255,.55);margin-bottom:16px;}
.breadcrumb a{color:rgba(255,255,255,.75);}
.breadcrumb a:hover{color:var(--green-400);}

/* stats -------------------------------------------------------------------- */
.stats{background:var(--navy-900);color:var(--white);padding:0;}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);}
.stat{padding:52px 28px;text-align:center;border-left:1px solid rgba(255,255,255,.08);}
.stat:first-child{border-left:none;}
.stat .num{font-family:var(--font-serif);font-size:clamp(1.7rem,2.6vw,2.3rem);color:var(--green-400);font-weight:700;margin-bottom:6px;}
.stat .label{font-size:.85rem;color:rgba(255,255,255,.72);}
@media (max-width:900px){
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .stat{border-left:none;border-top:1px solid rgba(255,255,255,.08);}
  .stat:nth-child(1),.stat:nth-child(2){border-top:none;}
}

/* cards ---------------------------------------------------------------------*/
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;}
@media (max-width:1024px){.grid-4{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.grid-4,.grid-3,.grid-2{grid-template-columns:1fr;}}

.service-card{
  background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:34px 28px;
  transition:all var(--transition);position:relative;overflow:hidden;
}
.service-card::before{content:"";position:absolute;left:0;top:0;width:3px;height:0;background:var(--green-500);transition:height var(--transition);}
.service-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);border-color:var(--gray-200);}
.service-card:hover::before{height:100%;}
.service-card .icon{
  width:48px;height:48px;border-radius:10px;background:var(--navy-900);color:var(--green-400);
  display:flex;align-items:center;justify-content:center;margin-bottom:20px;font-size:1.3rem;
}
.service-card h3{font-size:1.15rem;margin-bottom:10px;}
.service-card p{color:var(--gray-600);font-size:.95rem;margin-bottom:16px;}
.service-card .more{font-size:.85rem;font-weight:600;color:var(--green-600);display:inline-flex;align-items:center;gap:6px;}
.service-card .more::after{content:"→";transition:transform var(--transition);}
.service-card:hover .more::after{transform:translateX(4px);}

/* global reach ---------------------------------------------------------- */
.reach{background:var(--gray-50);}
.reach-map{
  display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin:40px 0 36px;
}
.city-pill{
  display:flex;align-items:center;gap:10px;background:var(--white);border:1px solid var(--gray-200);
  padding:12px 22px;border-radius:30px;font-weight:600;font-size:.92rem;color:var(--navy-800);box-shadow:var(--shadow-sm);
}
.city-pill .dot{width:8px;height:8px;border-radius:50%;background:var(--green-500);}

.reach-graphic{display:block;max-width:640px;margin:36px auto 8px;width:100%;height:auto;}
.reach-graphic .globe-ring{fill:none;stroke:var(--gray-200);stroke-width:1;}
.reach-graphic .arc{fill:none;stroke:var(--green-500);stroke-width:1.6;stroke-dasharray:5 6;opacity:.85;animation:reach-flow 2.4s linear infinite;}
.reach-graphic .node{fill:var(--navy-700);}
.reach-graphic .node.hub{fill:var(--green-500);}
@keyframes reach-flow{to{stroke-dashoffset:-22;}}
@media (prefers-reduced-motion:reduce){.reach-graphic .arc{animation:none;}}
.reach blockquote{
  max-width:760px;margin:0 auto;text-align:center;font-family:var(--font-serif);font-size:1.3rem;
  color:var(--navy-800);font-style:italic;line-height:1.5;
}

/* why choose us ------------------------------------------------------------*/
.why-list{display:grid;grid-template-columns:repeat(2,1fr);gap:20px 40px;}
@media (max-width:640px){.why-list{grid-template-columns:1fr;}}
.why-item{display:flex;gap:16px;align-items:flex-start;padding:18px 0;border-bottom:1px solid var(--gray-200);}
.why-item .num{
  flex-shrink:0;width:36px;height:36px;border-radius:50%;border:2px solid var(--green-500);color:var(--green-600);
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem;font-family:var(--font-serif);
}
.why-item h4{margin:0 0 4px;font-size:1.02rem;}
.why-item p{margin:0;color:var(--gray-600);font-size:.92rem;}

/* cta band ------------------------------------------------------------------*/
.cta-band{
  background:linear-gradient(120deg,var(--navy-900),var(--navy-700));color:var(--white);
  padding:64px 0;text-align:center;
}
.cta-band h2{color:var(--white);margin-bottom:24px;font-size:clamp(1.5rem,3vw,2.1rem);}
.cta-band .hero-actions{justify-content:center;}

/* footer ---------------------------------------------------------------------*/
.site-footer{background:var(--navy-900);color:rgba(255,255,255,.75);padding:72px 0 28px;}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;margin-bottom:52px;}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-brand img{height:62px;width:auto;margin-bottom:18px;}
.footer-brand p{font-size:.88rem;color:rgba(255,255,255,.55);max-width:280px;}
.footer-col h5{color:var(--white);font-size:.85rem;letter-spacing:.06em;text-transform:uppercase;margin-bottom:18px;font-family:var(--font-sans);}
.footer-col ul li{margin-bottom:11px;}
.footer-col a{font-size:.9rem;color:rgba(255,255,255,.68);}
.footer-col a:hover{color:var(--green-400);}
.footer-address{font-size:.9rem;color:rgba(255,255,255,.68);font-style:normal;line-height:1.7;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);padding-top:26px;display:flex;justify-content:space-between;
  flex-wrap:wrap;gap:12px;font-size:.8rem;color:rgba(255,255,255,.45);
}
.footer-bottom a{color:rgba(255,255,255,.45);}
.footer-bottom a:hover{color:var(--green-400);}

/* generic content blocks ------------------------------------------------- */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
@media (max-width:900px){.two-col{grid-template-columns:1fr;}}
.panel{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius);padding:36px;}
.tag-list{display:flex;flex-wrap:wrap;gap:10px;}
.tag{padding:8px 16px;border:1px solid var(--gray-200);border-radius:20px;font-size:.85rem;color:var(--navy-800);background:var(--white);}

.leader-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:30px 26px;text-align:center;}
.leader-avatar{
  width:88px;height:88px;border-radius:50%;background:var(--navy-900);color:var(--green-400);
  display:flex;align-items:center;justify-content:center;margin:0 auto 18px;font-family:var(--font-serif);
  font-size:1.5rem;font-weight:700;
}
.leader-card h4{margin-bottom:4px;font-size:1.05rem;}
.leader-role{color:var(--green-600);font-size:.85rem;font-weight:600;margin-bottom:12px;}
.leader-card p.desc{font-size:.88rem;color:var(--gray-600);}

.value-list{border-top:1px solid var(--gray-200);}

.legal-content{max-width:820px;}
.legal-content h2{font-size:1.25rem;margin-top:48px;padding-top:28px;border-top:1px solid var(--gray-200);}
.legal-content h2:first-child{margin-top:0;padding-top:0;border-top:none;}
.legal-content p{color:var(--gray-800);}
.value-row{display:flex;gap:24px;padding:26px 0;border-bottom:1px solid var(--gray-200);}
.value-row .n{font-family:var(--font-serif);font-size:1.4rem;color:var(--green-500);font-weight:700;flex-shrink:0;width:48px;}
.value-row h4{margin-bottom:6px;}
.value-row p{margin:0;color:var(--gray-600);font-size:.94rem;}

.office-card{border:1px solid var(--gray-200);border-radius:var(--radius);overflow:hidden;background:var(--white);}
.office-card .office-head{position:relative;background:var(--navy-900);color:var(--white);padding:20px 26px;overflow:hidden;min-height:96px;display:flex;flex-direction:column;justify-content:flex-end;}
.office-card .office-head.hq{background:linear-gradient(120deg,var(--green-600),var(--green-500));}
.office-card .office-head .office-badge,
.office-card .office-head h3{position:relative;z-index:1;}
.office-skyline{position:absolute;left:0;right:0;bottom:0;width:100%;height:100%;pointer-events:none;}
.office-skyline .sky-back{fill:#000;opacity:.22;mix-blend-mode:multiply;}
.office-skyline .sky-front{fill:#000;opacity:.5;mix-blend-mode:multiply;}
.office-skyline .sky-line{fill:none;stroke:rgba(255,255,255,.55);stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
.office-skyline .sky-line-dot{fill:var(--green-400);}
.office-card .office-head.hq .office-skyline .sky-line{stroke:rgba(255,255,255,.7);}
.office-card .office-head.hq .office-skyline .sky-line-dot{fill:#fff;}
.office-card .office-body{padding:22px 26px;}
.office-card .office-body p{font-size:.9rem;color:var(--gray-600);margin-bottom:6px;}
.office-badge{display:inline-block;font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;background:var(--green-500);color:#fff;padding:3px 10px;border-radius:10px;margin-bottom:8px;}

.insight-card{border:1px solid var(--gray-200);border-radius:var(--radius);overflow:hidden;background:var(--white);transition:all var(--transition);}
.insight-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);}
.insight-thumb{height:150px;background:linear-gradient(135deg,var(--navy-800),var(--navy-600));display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.2);font-size:2.4rem;font-family:var(--font-serif);}
.insight-thumb-icon{width:52px;height:52px;border-radius:12px;background:rgba(255,255,255,.08);color:var(--green-400);display:flex;align-items:center;justify-content:center;font-size:1.5rem;}
.insight-body{padding:24px 24px 26px;}
.insight-meta{font-size:.78rem;color:var(--green-600);font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px;}
.insight-body h3{font-size:1.05rem;margin-bottom:10px;}
.insight-body p{font-size:.88rem;color:var(--gray-600);margin-bottom:0;}

.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
@media (max-width:640px){.form-grid{grid-template-columns:1fr;}}
.field{display:flex;flex-direction:column;gap:8px;margin-bottom:18px;}
.field.full{grid-column:1/-1;}
.hp-field{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
.field label{font-size:.85rem;font-weight:600;color:var(--navy-800);}
.field input,.field select,.field textarea{
  padding:12px 14px;border:1px solid var(--gray-200);border-radius:4px;font-family:var(--font-sans);font-size:.95rem;
  background:var(--white);color:var(--ink);
}
.field textarea{resize:vertical;min-height:120px;}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--green-500);box-shadow:0 0 0 3px rgba(92,171,52,.15);}

.contact-info-card{background:var(--navy-900);color:#fff;border-radius:var(--radius);padding:36px;}
.contact-info-card h3{color:#fff;}
.contact-line{display:flex;gap:14px;margin-bottom:22px;align-items:flex-start;}
.contact-line .ic{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--green-400);}
.contact-line .txt{font-size:.92rem;color:rgba(255,255,255,.8);line-height:1.6;}
.contact-line .txt strong{display:block;color:#fff;font-size:.85rem;text-transform:uppercase;letter-spacing:.04em;margin-bottom:4px;}
.map-wrap{border-radius:var(--radius);overflow:hidden;border:1px solid var(--gray-200);margin-top:28px;}
.map-wrap iframe{width:100%;height:320px;border:0;display:block;}

.disclosure-list{display:flex;flex-direction:column;gap:0;border-top:1px solid var(--gray-200);}
.disclosure-row{display:flex;justify-content:space-between;align-items:center;padding:20px 4px;border-bottom:1px solid var(--gray-200);gap:16px;}
.disclosure-row .meta{font-size:.82rem;color:var(--gray-600);}
.disclosure-row h4{margin:0 0 4px;font-size:.98rem;}

.industry-card{position:relative;border-radius:var(--radius);overflow:hidden;background:var(--navy-900);color:#fff;padding:32px 26px;min-height:190px;display:flex;flex-direction:column;justify-content:flex-start;}
.industry-card h3{color:#fff;font-size:1.1rem;margin-bottom:8px;}
.industry-card p{color:rgba(255,255,255,.72);font-size:.86rem;margin:0;}
.industry-card::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 0%, rgba(124,193,66,.28), transparent 60%);}
.industry-card .icon{
  position:relative;width:44px;height:44px;border-radius:9px;background:rgba(255,255,255,.08);
  color:var(--green-400);display:flex;align-items:center;justify-content:center;margin-bottom:16px;font-size:1.2rem;
}

.breadcrumb-wrap{background:var(--gray-50);border-bottom:1px solid var(--gray-200);}

.back-top{
  position:fixed;right:22px;bottom:22px;width:44px;height:44px;border-radius:50%;background:var(--navy-900);color:#fff;
  display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-md);opacity:0;pointer-events:none;
  transition:opacity var(--transition);z-index:900;cursor:pointer;border:none;
}
.back-top.show{opacity:1;pointer-events:auto;}

::selection{background:var(--green-400);color:var(--navy-900);}
