:root{
  --green:#009f32;
  --green-2:#02c84f;
  --green-dark:#033f25;
  --green-soft:#eafff1;
  --ink:#10231a;
  --muted:#64736b;
  --line:#dcece3;
  --white:#ffffff;
  --bg:#f7fbf8;
  --shadow:0 18px 50px rgba(3,63,37,.12);
  --shadow-soft:0 12px 34px rgba(3,63,37,.06);
  --text:#10231a;
  --radius:24px;
  --radius-sm:16px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
.container{width:min(var(--container), calc(100% - 40px)); margin-inline:auto}
.section{padding:96px 0; position:relative}
.section.compact{padding:32px 0 74px}
.soft{background:linear-gradient(180deg,#f3fbf5 0%, #fff 100%)}
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(247,251,248,.86);
  border-bottom:1px solid rgba(220,236,227,.8);
  backdrop-filter:blur(16px);
}
.navbar{
  width:min(1220px,calc(100% - 32px));
  margin:auto; min-height:78px;
  display:flex; align-items:center; justify-content:space-between; gap:28px;
}
.brand{display:flex; align-items:center; min-width:184px; overflow:hidden}
.brand img{width:190px; height:70px; object-fit:contain; object-position:left center}
.nav-menu{display:flex; align-items:center; gap:4px}
.nav-menu a{padding:10px 14px; color:#304139; font-size:14px; font-weight:700; border-radius:999px}
.nav-menu a:hover{background:var(--green-soft); color:var(--green-dark)}
.nav-menu .nav-cta{background:var(--green); color:white; box-shadow:0 12px 24px rgba(0,159,50,.22)}
.nav-menu .nav-cta:hover{background:var(--green-dark); color:white}
.nav-toggle{display:none; width:44px; height:44px; border:0; background:white; border-radius:12px; box-shadow:0 10px 24px rgba(3,63,37,.08); cursor:pointer}
.nav-toggle span{width:20px; height:2px; background:var(--green-dark); display:block; margin:5px auto; transition:.25s}
.hero{
  padding:86px 0 42px;
  overflow:hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(2,200,79,.14), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(0,159,50,.12), transparent 30%),
    linear-gradient(180deg,#fff 0%,#f7fbf8 100%);
}
.hero-grid{display:grid; grid-template-columns:1.03fr .97fr; align-items:center; gap:60px}
.eyebrow{margin:0 0 14px; color:var(--green); font-size:13px; font-weight:900; letter-spacing:.12em; text-transform:uppercase}
h1,h2,h3,p{margin-top:0}
h1{font-size:clamp(42px,6vw,76px); line-height:.98; letter-spacing:-.06em; margin-bottom:22px; color:var(--green-dark)}
h2{font-size:clamp(30px,4vw,50px); line-height:1.08; letter-spacing:-.045em; margin-bottom:18px; color:var(--green-dark)}
h3{font-size:22px; line-height:1.18; letter-spacing:-.02em; margin-bottom:10px; color:var(--green-dark)}
.hero-text{font-size:18px; color:var(--muted); max-width:650px; margin-bottom:30px}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:36px}
.btn{display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:13px 21px; border-radius:999px; font-size:14px; font-weight:900; border:1px solid transparent; cursor:pointer; transition:.2s ease}
.btn-primary{background:var(--green); color:white; box-shadow:0 16px 30px rgba(0,159,50,.22)}
.btn-primary:hover{background:var(--green-dark); transform:translateY(-2px)}
.btn-outline{background:white; color:var(--green-dark); border-color:var(--line)}
.btn-outline:hover{border-color:var(--green); transform:translateY(-2px)}
.btn-light{background:white; color:var(--green-dark)}
.hero-stats{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; max-width:620px}
.hero-stats div{background:white; border:1px solid var(--line); border-radius:18px; padding:15px; box-shadow:0 10px 26px rgba(3,63,37,.06)}
.hero-stats strong{display:block; color:var(--green); font-size:28px; line-height:1; margin-bottom:4px}
.hero-stats span{font-size:13px; color:var(--muted); font-weight:700}
.hero-visual{position:relative; min-height:480px; display:grid; place-items:center}
.dashboard-card{width:min(100%,560px); background:white; border:1px solid rgba(220,236,227,.9); border-radius:32px; box-shadow:var(--shadow); overflow:hidden; transform:rotate(-1deg)}
.dash-top{height:58px; background:var(--green-dark); display:flex; align-items:center; gap:9px; padding:0 18px; color:#c9f8d9}
.dash-top span{width:11px; height:11px; border-radius:50%; background:var(--green-2)}
.dash-top small{margin-left:auto; font-size:12px; font-weight:800}
.dash-body{display:grid; grid-template-columns:112px 1fr; min-height:345px; background:linear-gradient(135deg,#fff,#f1fbf4)}
.dash-side{padding:22px 16px; background:#f4fbf6; border-right:1px solid var(--line)}
.dash-side span{display:block; height:12px; border-radius:99px; background:#cdebd8; margin:0 0 18px}
.dash-side span:nth-child(1){background:var(--green); height:36px}
.dash-main{padding:28px}
.dash-title{width:58%; height:28px; border-radius:99px; background:var(--green-dark); margin-bottom:22px}
.dash-metrics{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:18px}
.dash-metrics div{height:80px; border-radius:18px; background:white; border:1px solid var(--line); position:relative}
.dash-metrics div:after{content:""; position:absolute; left:16px; top:18px; width:45%; height:10px; background:#b8eac8; border-radius:99px; box-shadow:0 24px 0 var(--green)}
.dash-chart{height:128px; background:white; border:1px solid var(--line); border-radius:20px; display:flex; align-items:end; gap:14px; padding:18px; margin-bottom:18px}
.dash-chart i{flex:1; border-radius:12px 12px 0 0; background:linear-gradient(180deg,var(--green-2),var(--green)); min-height:30px}
.dash-chart i:nth-child(1){height:44px}.dash-chart i:nth-child(2){height:72px}.dash-chart i:nth-child(3){height:52px}.dash-chart i:nth-child(4){height:98px}.dash-chart i:nth-child(5){height:64px}
.dash-list span{display:block; height:12px; background:#d9efe1; border-radius:999px; margin:12px 0}.dash-list span:nth-child(2){width:70%}.dash-list span:nth-child(3){width:86%}
.floating-note{position:absolute; background:white; border:1px solid var(--line); box-shadow:0 14px 38px rgba(3,63,37,.12); border-radius:999px; padding:11px 16px; color:var(--green-dark); font-size:13px; font-weight:900}
.note-a{top:42px; right:12px}.note-b{left:2px; bottom:70px}
.value-row{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.value-row>div{background:white; border:1px solid var(--line); border-radius:var(--radius); padding:26px; box-shadow:0 14px 36px rgba(3,63,37,.06)}
.value-icon{display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:13px; color:white; background:var(--green); font-weight:900; margin-bottom:16px}
.value-row p,.section-head p,.split-head p,.service-card p,.product-body p,.about-copy p,.cta-box p,.contact-info p,.footer p{color:var(--muted)}
.section-head{max-width:720px; margin-bottom:38px}.section-head.center{text-align:center; margin-inline:auto}
.split-head{display:grid; grid-template-columns:1fr 420px; gap:40px; align-items:end; margin-bottom:38px}.split-head p{margin-bottom:0}
.service-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.service-card{background:white; border:1px solid var(--line); border-radius:var(--radius); padding:30px; min-height:258px; transition:.2s ease; box-shadow:0 12px 34px rgba(3,63,37,.05)}
.service-card:hover{transform:translateY(-6px); box-shadow:var(--shadow); border-color:#b9e6c8}
.service-card img{width:54px; height:54px; margin-bottom:22px}
.product-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.product-card{border:0; background:white; text-align:left; border-radius:28px; overflow:hidden; border:1px solid var(--line); cursor:pointer; transition:.2s ease; box-shadow:0 12px 30px rgba(3,63,37,.06); position:relative}
.product-card:hover{transform:translateY(-7px); box-shadow:var(--shadow); border-color:#abdfbd}
.product-logo{position:absolute; top:18px; left:18px; z-index:2; width:54px; height:54px; border-radius:17px; box-shadow:0 12px 24px rgba(3,63,37,.15)}
.product-screen{width:100%; height:210px; object-fit:cover; background:#eaf9f0}
.product-body{padding:24px}.product-body span{display:inline-flex; color:var(--green); font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px}.product-body p{margin-bottom:0}
.problem-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px}
.problem-list,.solution-list{border-radius:32px; padding:34px; border:1px solid var(--line); background:white; box-shadow:0 12px 34px rgba(3,63,37,.05)}
.solution-list{background:var(--green-dark); color:white; border-color:transparent}.solution-list h3,.solution-list b{color:white}.solution-list span{color:#c9f8d9}
.problem-item,.solution-item{padding:18px 0; border-top:1px solid rgba(220,236,227,.9)}
.solution-item{border-color:rgba(255,255,255,.14)}
.problem-item b,.solution-item b{display:block; margin-bottom:4px}.problem-item span,.solution-item span{display:block; color:var(--muted)}
.about-grid{display:grid; grid-template-columns:1fr 430px; gap:52px; align-items:center}.check-list{display:grid; gap:12px; margin-top:24px}.check-list span{background:white; border:1px solid var(--line); border-radius:16px; padding:13px 15px; font-weight:800; color:#284136}
.ethic-card{background:white; border:1px solid var(--line); border-radius:32px; padding:32px; box-shadow:var(--shadow)}
.ethic-item{display:grid; grid-template-columns:130px 1fr; gap:14px; padding:17px 0; border-top:1px solid var(--line)}.ethic-item b{color:var(--green)}.ethic-item span{color:var(--muted)}
.team-gallery{display:grid; grid-template-columns:repeat(5,1fr); gap:16px}.team-card{appearance:none; border:0; padding:0; background:white; border:1px solid var(--line); border-radius:24px; overflow:hidden; cursor:pointer; text-align:left; transition:.2s ease; box-shadow:0 12px 28px rgba(3,63,37,.06)}.team-card:hover{transform:translateY(-5px); box-shadow:var(--shadow)}.team-card img{height:180px; width:100%; object-fit:cover}.team-card span{display:block; padding:15px 16px; font-size:14px; font-weight:900; color:var(--green-dark)}
.cta-section{padding:70px 0; background:linear-gradient(135deg,var(--green-dark),#066534)}.cta-box{display:flex; align-items:center; justify-content:space-between; gap:28px; color:white}.cta-box h2,.cta-box .eyebrow{color:white}.cta-box p{color:#d6ffe3; margin-bottom:0; max-width:680px}
.contact-grid{display:grid; grid-template-columns:.85fr 1.15fr; gap:34px}.contact-list{display:grid; gap:12px; margin-top:24px}.contact-list a,.contact-list span{background:white; border:1px solid var(--line); border-radius:16px; padding:14px 16px; font-weight:800; color:var(--green-dark)}
.contact-form{background:white; border:1px solid var(--line); border-radius:32px; padding:30px; box-shadow:var(--shadow); display:grid; gap:16px}.contact-form label{display:grid; gap:8px; color:#294338; font-weight:900}.contact-form input,.contact-form textarea,.contact-form select{width:100%; border:1px solid var(--line); border-radius:16px; padding:13px 14px; color:var(--ink); background:#fbfdfb; outline:none}.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{border-color:var(--green); box-shadow:0 0 0 4px rgba(0,159,50,.1)}
.footer{background:#061b10; color:#d8f4e0; padding:62px 0 24px}.footer-grid{display:grid; grid-template-columns:1.4fr .7fr .7fr .9fr; gap:34px; padding-bottom:36px}.footer-logo{width:180px; height:72px; object-fit:contain; object-position:left center; background:white; border-radius:14px; padding:4px; margin-bottom:16px}.footer h4{margin:0 0 14px; color:white}.footer a{display:block; color:#c4dfcc; margin:8px 0}.footer a:hover{color:white}.footer p{color:#b3d4bf; max-width:370px}.footer-bottom{border-top:1px solid rgba(255,255,255,.12); padding-top:22px; display:flex; justify-content:space-between; gap:20px; color:#9fbda8}
.modal{position:fixed; inset:0; z-index:100; display:none}.modal.is-open{display:block}.modal-backdrop{position:absolute; inset:0; background:rgba(4,20,12,.72); backdrop-filter:blur(8px)}.modal-panel{position:relative; width:min(980px,calc(100% - 32px)); margin:5vh auto; background:white; border-radius:32px; overflow:hidden; box-shadow:0 30px 90px rgba(0,0,0,.35)}.modal-close{position:absolute; right:14px; top:14px; z-index:2; width:42px; height:42px; border:0; border-radius:50%; background:#f2fbf5; color:var(--green-dark); font-size:28px; cursor:pointer}.modal-content{padding:34px}.modal-copy{max-width:720px; padding-right:48px}.modal-copy h3{font-size:32px}.modal-image-wrap{position:relative; background:#effaf3; border:1px solid var(--line); border-radius:24px; overflow:hidden}.modal-image-wrap img{width:100%; height:min(58vh,520px); object-fit:cover}.gallery-nav{position:absolute; top:50%; transform:translateY(-50%); border:0; width:44px; height:44px; border-radius:50%; background:white; color:var(--green-dark); box-shadow:0 14px 30px rgba(3,63,37,.16); font-size:34px; line-height:1; cursor:pointer}.gallery-nav.prev{left:16px}.gallery-nav.next{right:16px}.modal-counter{text-align:center; padding-top:14px; color:var(--muted); font-weight:900}
.reveal{opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease}.reveal.in-view{opacity:1; transform:none}.delay-1{transition-delay:.12s}.delay-2{transition-delay:.22s}
@media (max-width:1020px){.hero-grid,.about-grid,.contact-grid,.problem-grid,.split-head{grid-template-columns:1fr}.service-grid,.product-grid{grid-template-columns:repeat(2,1fr)}.team-gallery{grid-template-columns:repeat(3,1fr)}.hero-visual{min-height:420px}.cta-box{display:grid}.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:760px){.container{width:min(100% - 28px,var(--container))}.navbar{min-height:70px}.brand img{width:158px;height:58px}.nav-toggle{display:block}.nav-menu{position:absolute; left:16px; right:16px; top:76px; display:grid; gap:6px; background:white; border:1px solid var(--line); border-radius:22px; padding:12px; box-shadow:var(--shadow); opacity:0; pointer-events:none; transform:translateY(-10px); transition:.2s}.nav-menu.is-open{opacity:1; pointer-events:auto; transform:none}.nav-menu a{padding:13px 16px}.section{padding:68px 0}.hero{padding-top:54px}.hero-grid{gap:34px}h1{font-size:42px}.hero-stats,.value-row,.service-grid,.product-grid,.team-gallery,.footer-grid{grid-template-columns:1fr}.dash-body{grid-template-columns:76px 1fr}.dash-main{padding:18px}.dash-metrics{grid-template-columns:1fr}.hero-visual{min-height:360px}.dashboard-card{border-radius:24px}.floating-note{display:none}.ethic-item{grid-template-columns:1fr}.contact-form{padding:22px}.footer-bottom{display:grid}.modal-panel{margin:3vh auto}.modal-content{padding:22px}.modal-copy{padding-right:40px}.modal-image-wrap img{height:52vh}.team-card img,.product-screen{height:190px}}
@media (max-width:460px){.hero-actions{display:grid}.btn{width:100%}.dash-side{display:none}.dash-body{grid-template-columns:1fr}.hero-stats strong{font-size:24px}.cta-section{padding:56px 0}}

/* About page */
.nav-menu a.active{color:var(--green); background:#f2fbf5; font-weight:900}
.about-more-btn{margin-top:24px}
.page-hero{padding-top:96px; background:radial-gradient(circle at 12% 15%, rgba(0,168,55,.10), transparent 32%), linear-gradient(180deg,#f6fbf8 0%,#ffffff 100%)}
.page-hero-grid{display:grid; grid-template-columns:1.08fr .92fr; gap:62px; align-items:center}.page-hero-copy h1{font-size:clamp(44px,6vw,76px); letter-spacing:-.055em; line-height:.98; margin:0 0 22px}.about-hero-card{background:linear-gradient(145deg,#ffffff,#eefaf2); border:1px solid var(--line); border-radius:34px; padding:30px; box-shadow:var(--shadow); position:relative; overflow:hidden}.about-hero-card:before{content:""; position:absolute; width:260px; height:260px; right:-90px; top:-90px; background:rgba(0,168,55,.12); border-radius:50%}.about-hero-logo{position:relative; background:#fff; border:1px solid var(--line); border-radius:26px; padding:18px; box-shadow:0 16px 42px rgba(3,63,37,.09)}.about-hero-logo img{width:100%; max-height:120px; object-fit:contain}.about-hero-lines{display:grid; gap:12px; margin:28px 0}.about-hero-lines span{height:12px; border-radius:999px; background:linear-gradient(90deg,var(--green),rgba(0,168,55,.08))}.about-hero-lines span:nth-child(2){width:78%}.about-hero-lines span:nth-child(3){width:55%}.about-hero-metrics{display:grid; gap:12px}.about-hero-metrics div{background:white; border:1px solid var(--line); border-radius:20px; padding:16px; display:grid; gap:4px}.about-hero-metrics strong{color:var(--green-dark); font-size:18px}.about-hero-metrics small{color:var(--muted); font-weight:700}.about-profile-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:54px; align-items:start}.about-profile-copy p{font-size:17px; line-height:1.85}.about-highlight,.check-panel,.vision-card,.mission-card,.quality-box{background:white; border:1px solid var(--line); border-radius:30px; padding:32px; box-shadow:var(--shadow-soft)}.about-highlight h3{font-size:28px; margin:0 0 20px}.highlight-list{display:grid; gap:12px}.highlight-list span{padding:15px 16px; border-radius:16px; background:#f2fbf5; color:var(--green-dark); font-weight:900}.two-column-check{display:grid; grid-template-columns:1fr 1fr; gap:26px}.check-panel h2{font-size:34px}.check-list.large{margin-top:24px}.check-list.large span{line-height:1.55}.vision-grid{display:grid; grid-template-columns:.95fr 1.05fr; gap:28px; align-items:stretch}.vision-card{background:linear-gradient(145deg,var(--green-dark),#094b2b); color:white}.vision-card .eyebrow,.vision-card p{color:#ccebd6}.vision-card h2{color:white; font-size:38px}.mission-card{display:grid; gap:14px}.mission-item{display:grid; grid-template-columns:58px 1fr; gap:16px; align-items:start; padding:16px; border:1px solid var(--line); border-radius:18px; background:#f8fcf9}.mission-item b{width:46px; height:46px; border-radius:50%; display:grid; place-items:center; color:white; background:var(--green); box-shadow:0 12px 24px rgba(0,168,55,.18)}.mission-item span{color:var(--text); font-weight:800; line-height:1.5}.values-grid,.capability-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px}.value-card,.capability-card{background:white; border:1px solid var(--line); border-radius:26px; padding:26px; box-shadow:var(--shadow-soft); transition:.25s}.value-card:hover,.capability-card:hover{transform:translateY(-5px); box-shadow:var(--shadow)}.value-card span{display:inline-grid; place-items:center; width:44px; height:44px; border-radius:14px; background:#e8f8ed; color:var(--green-dark); font-weight:1000}.value-card h3,.capability-card h3{font-size:22px; margin:18px 0 8px}.timeline{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; position:relative}.timeline-item{background:white; border:1px solid var(--line); border-radius:26px; padding:26px; box-shadow:var(--shadow-soft)}.timeline-item b{display:inline-block; padding:8px 13px; border-radius:999px; background:var(--green); color:white; margin-bottom:16px}.timeline-item h3{margin:0 0 8px; font-size:22px}.capability-grid{grid-template-columns:repeat(3,1fr)}.capability-card{min-height:190px}.quality-box{display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center; background:linear-gradient(135deg,#ffffff 0%,#effaf3 100%)}.quality-box h2{font-size:38px}.quality-points{display:flex; flex-wrap:wrap; gap:12px}.quality-points span{background:white; border:1px solid var(--line); border-radius:999px; padding:13px 16px; color:var(--green-dark); font-weight:900; box-shadow:0 10px 26px rgba(3,63,37,.08)}
@media (max-width:1020px){.page-hero-grid,.about-profile-grid,.two-column-check,.vision-grid,.quality-box{grid-template-columns:1fr}.values-grid,.timeline{grid-template-columns:repeat(2,1fr)}.capability-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:760px){.page-hero{padding-top:72px}.page-hero-copy h1{font-size:42px}.about-hero-card,.about-highlight,.check-panel,.vision-card,.mission-card,.quality-box{border-radius:24px; padding:24px}.values-grid,.timeline,.capability-grid{grid-template-columns:1fr}.vision-card h2,.quality-box h2,.check-panel h2{font-size:30px}.mission-item{grid-template-columns:1fr}.mission-item b{width:42px;height:42px}}


/* About team section */
.team-about-layout{display:grid; grid-template-columns:1fr 360px; gap:28px; align-items:start}
.team-member-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px}
.team-member-card{background:white; border:1px solid var(--line); border-radius:28px; padding:18px; box-shadow:var(--shadow-soft); display:grid; grid-template-columns:118px 1fr; gap:18px; align-items:center; transition:.25s ease}
.team-member-card:hover{transform:translateY(-5px); box-shadow:var(--shadow); border-color:#b8e8c8}
.team-member-card img{width:118px; height:118px; border-radius:24px; object-fit:cover; background:#f2fbf5; border:1px solid var(--line)}
.team-member-card span{display:inline-flex; margin-bottom:6px; color:var(--green); font-size:11px; font-weight:1000; letter-spacing:.08em; text-transform:uppercase}
.team-member-card h3{font-size:21px; margin-bottom:6px}
.team-member-card p{margin:0; color:var(--muted); font-size:14px; line-height:1.55}
.team-work-panel{position:sticky; top:102px; background:linear-gradient(145deg,var(--green-dark),#075632); color:white; border-radius:30px; padding:30px; box-shadow:var(--shadow); overflow:hidden}
.team-work-panel:before{content:""; position:absolute; width:220px; height:220px; right:-90px; top:-90px; background:rgba(255,255,255,.09); border-radius:50%}
.team-work-panel .eyebrow,.team-work-panel h3{color:white; position:relative}
.team-work-panel h3{font-size:30px; margin-bottom:22px}
.team-work-list{display:grid; gap:12px; margin-bottom:24px; position:relative}
.team-work-list div{display:grid; grid-template-columns:46px 1fr; gap:12px; align-items:center; padding:13px; border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.08)}
.team-work-list b{width:38px; height:38px; border-radius:14px; display:grid; place-items:center; background:white; color:var(--green-dark); font-size:13px}
.team-work-list span{color:#d9f8e2; font-weight:800; line-height:1.45}
@media (max-width:1020px){.team-about-layout{grid-template-columns:1fr}.team-work-panel{position:relative; top:auto}.team-member-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:760px){.team-member-grid{grid-template-columns:1fr}.team-member-card{grid-template-columns:92px 1fr; border-radius:22px; padding:14px}.team-member-card img{width:92px; height:92px; border-radius:20px}.team-work-panel{border-radius:24px; padding:24px}.team-work-panel h3{font-size:26px}}
@media (max-width:460px){.team-member-card{grid-template-columns:1fr}.team-member-card img{width:100%; height:220px}}


/* CI4 dynamic addition */
.admin-edit-link{position:fixed;right:18px;bottom:18px;z-index:80;background:var(--green-dark);color:white;padding:10px 14px;border-radius:999px;font-weight:900;font-size:12px;box-shadow:var(--shadow)}
.flash{padding:14px 16px;border-radius:16px;margin:16px 0;font-weight:800}.flash.success{background:#e9fff0;color:#05572f;border:1px solid #bfebce}.flash.error{background:#fff1f1;color:#8b1a1a;border:1px solid #ffd1d1}
.hero-image-card{width:min(100%,560px);background:white;border:1px solid var(--line);border-radius:32px;box-shadow:var(--shadow);overflow:hidden;padding:12px}.hero-image-card img{width:100%;height:420px;object-fit:cover;border-radius:24px}.service-card .service-icon{width:54px;height:54px;margin-bottom:22px;border-radius:16px;background:#e9fff0;display:grid;place-items:center;color:var(--green);font-weight:1000;font-size:20px;object-fit:cover}.gallery-empty{padding:24px;border-radius:20px;background:#fff;border:1px dashed var(--line);color:var(--muted)}
@media(max-width:760px){.hero-image-card img{height:300px}}
