:root{
  --bg:#fbfbfa;
  --panel:#ffffff;
  --muted:#6b7280;
  --accent:#0f766e;
  --accent-2:#0ea5a0;
  --text:#0b1220;
  --subtle:#f1f5f9;
  --card:#ffffff;
  --radius:10px;
  --max:1400px;
  --hero-visual-width:760px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color-scheme: light;
}

/* Base reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,var(--bg),#f8fafb 200%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
  line-height:1.5;
  /* enable standard ligatures + vendor-prefixed fallback */
  font-feature-settings: "liga" 1;
  -webkit-font-feature-settings: "liga" 1;
}

/* Center + max width */
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:18px;
  width:100%;
}

/* Header */
.site-header{
  background:transparent;
  position:sticky;
  top:0;
  border-bottom:1px solid rgba(11,17,23,0.06);
  z-index:40;
  backdrop-filter:blur(6px);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:space-between;
  width:100%;
}
/* branding */
.brand{display:flex;align-items:center;gap:12px}
.brand-link{display:inline-block}
.brand-logo{
  display:block;
  width:210px;          /* desktop default */
  height:auto;
  max-width:40vw;       /* never overflow on small screens */
  max-height:56px;
  object-fit:contain;
}
/* ensure tag sits nicely and wraps */
.tag{font-size:12px;color:var(--muted);line-height:1.2;white-space:normal}
/* .brand{display:flex;align-items:center;gap:12px}
.logo{width:46px;height:46px;border-radius:8px;background:linear-gradient(135deg,var(--accent),var(--accent-2));display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff;box-shadow:0 6px 20px rgba(10,118,110,0.08)}
.brand-text h1{margin:0;font-size:18px} */
/* .tag{font-size:12px;color:rgb(29, 81, 141);margin:0} */
.main-nav{
  display:flex;
  gap:6px;
  align-items:center;
  flex-wrap:wrap;
  max-width:80%;
  overflow:auto;
}
.main-nav a{
  color:var(--muted);
  text-decoration:none;
  margin:0 6px;
  padding:8px;
  border-radius:8px;
  white-space:nowrap;
  display:inline-block;
}
.main-nav a.active, .main-nav a:hover{color:var(--text);background:rgba(28, 105, 94, 0.06)}
.cta{background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff;padding:8px 12px;border-radius:8px;text-decoration:none;font-weight:600;white-space:nowrap}

/* Hero */
.hero{padding:12px 0}

/* Banner row */
.hero-banner-row{
  width:100%;
  margin-bottom:18px;
}

/* Banner image: responsive */
.hero-banner{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  max-height:580px;
  object-fit:cover;
  object-position:center;
  border-radius:8px;
}

/* columns row (copy + side) with wrapping */
.hero-inner{
  display:flex;
  gap:18px;
  align-items:flex-start;
  margin:0;
  padding:0;
  flex-wrap:wrap;
}

.hero-inner{
  display:flex;
  gap:12px;              /* smaller gap between columns */
  align-items:flex-start;
  flex-wrap:wrap;
}

.hero-copy{
  padding:10px;
  flex:1 1 0;            /* take remaining space, allow shrinking */
  min-width:240px;
  max-width:1100px;
  text-align:justify;
}
.hero-copy h3{font-size:18px;font-weight: normal;margin:0 0 12px}
.hero-copy h4{font-size:16px;font-weight: normal;margin:0 0 12px}
.hero-copy p{color:var(--muted);margin:0 0 20px}
.hero-cta .btn{margin-right:12px}

.hero-side{
  margin-left:auto;      /* push the side column to the far right */
  flex:0 0 320px;        /* fixed width */
  max-width:300px;
  min-width:160px;
  padding:10px;
  text-align:right;
}

.hero-side h3{font-size:18px;font-weight: normal;margin:0 0 12px}

/* Buttons */
.btn{display:inline-block;padding:10px 14px;border-radius:8px;text-decoration:none;font-weight:600}
.btn.primary{background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff}
.btn.ghost{background:transparent;border:1px solid rgba(11,17,23,0.06);color:var(--muted)}

/* Cards & grids */
.card{background:var(--card);padding:16px;border-radius:12px;box-shadow:0 6px 20px rgba(18,24,32,0.04)}
.card.small{width:260px;max-width:100%}
.features{padding:40px 0}
.section-title{margin:0 0 20px;font-size:20px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feature{background:linear-gradient(180deg, rgba(15,118,110,0.02), rgba(255,255,255,0.6));padding:20px;border-radius:12px;border:1px solid rgba(11,17,23,0.03)}
.feature .icon{font-size:22px;margin-bottom:8px}
.muted{color:var(--muted);font-size:13px}
.cards{padding:36px 0}
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.product-card{background:linear-gradient(90deg, rgba(15,118,110,0.02), rgba(255,255,255,0.98));padding:18px;border-radius:12px;min-height:140px;position:relative;border:1px solid rgba(11,17,23,0.04)}
.product-card .link{position:absolute;right:16px;bottom:16px;color:var(--accent);text-decoration:none}
.cta-strip{background:linear-gradient(90deg, rgba(15,118,110,0.04), rgba(14,165,160,0.02));padding:20px;border-radius:12px;margin:30px 0;border:1px solid rgba(11,17,23,0.04)}
.cta-strip-inner{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.footer-features{padding:24px 0}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.site-footer{border-top:1px solid rgba(11,17,23,0.06);padding:18px 0;margin-top:30px;background:transparent}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.brand-small{display:flex;align-items:center;gap:10px}
.footer-nav a{color:var(--muted);text-decoration:none;margin:0 8px}
.copy{color:var(--muted);font-size:13px}

/* Jobs & Contact */
.jobs-filter{display:flex;gap:12px;align-items:center;margin:18px 0;flex-wrap:wrap}
.jobs-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.job{background:var(--panel);padding:16px;border-radius:10px;display:flex;flex-direction:column;border:1px solid rgba(11,17,23,0.04)}
.job-head{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.job-title{margin:0}
.job-location{color:var(--muted);font-size:13px}
.job-actions{margin-top:12px;display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.apply{background:linear-gradient(90deg,var(--accent),var(--accent-2));color:#fff;padding:8px 10px;border-radius:8px;text-decoration:none}
.details{color:var(--muted);text-decoration:none}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:18px 0}
.contact-card{background:var(--card);padding:16px;border-radius:10px;border:1px solid rgba(11,17,23,0.04)}
.contact-form{display:grid;gap:12px;max-width:640px}
.contact-form label{display:flex;flex-direction:column;font-size:14px}
.contact-form input, .contact-form textarea{padding:10px;border-radius:8px;border:1px solid rgba(11,17,23,0.06);width:100%}

/* Accessibility improvements */
a:focus{outline:3px solid rgba(14,165,160,0.12);outline-offset:2px}
img{max-width:100%;height:auto;display:block}

/* Responsive breakpoints */
@media (max-width:1100px){
  .main-nav{max-width:55%}
  .hero-side{flex:0 0 280px;max-width:280px}
  .grid-3,.card-grid{grid-template-columns:1fr 1fr}
  .grid-4{grid-template-columns:1fr 1fr}
}

@media (max-width:900px){
  .grid-3,.card-grid{grid-template-columns:1fr 1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .hero-inner{flex-direction:column;gap:18px;padding:0}
  .hero-inner{flex-direction:column;gap:18px}
  .hero-side{margin-left:0;flex:1 1 100%;max-width:100%}
  .contact-grid{grid-template-columns:1fr}
  .main-nav{max-width:100%}
  .header-inner{padding:8px 0}
}

@media (max-width:600px){
  :root{font-size:15px}
  .grid-3,.card-grid{grid-template-columns:1fr}
  .header-inner{flex-direction:column;align-items:flex-start;gap:10px}
  .main-nav{display:flex;gap:8px;overflow:auto;padding-bottom:6px}
  .hero-copy{flex:1 1 100%;min-width:0}
  .hero-side{order:2;padding:8px}
  .hero-banner{max-height:220px;border-radius:8px}
  .brand img, .logo{width:44px;height:44px}
  .cta{padding:8px 10px}
  .container{padding:12px}
  .site-footer .footer-inner{align-items:flex-start}
}

/* Smallest phones */
@media (max-width:380px){
  :root{font-size:14px}
  .brand{gap:8px}
  .brand-logo{width:210px;max-width:50vw}
  .tag{font-size:11px}
  .header-inner{padding:6px}
  .main-nav a{padding:6px 8px;font-size:13px}
  .tag{font-size:11px}
  .hero-copy h3{font-size:16px}
  .hero-side{padding:6px;font-size:14px}
}

/* tighten header spacing on small screens */
@media (max-width:600px){
  .brand{gap:8px}
  .brand-logo{width:210px;max-width:50vw}
  .tag{font-size:11px}
  .header-inner{padding:8px 12px}
}

.collapsible-toggle{
  font-size:14px;       /* change to desired size (e.g. 16–18px) */
  line-height:1.4;
  padding:0px 12px;     /* larger hit target */
  font-weight:400;      /* optional: bolder appearance */
  color:var(--text);
  background:rgb(35, 177, 10);
  border:none;
  cursor:pointer;
}

/* If the toggle is an inline element inside a small-text container,
   force it to use the base site font-size */
.collapsible-toggle { font-size: 1rem; }

/* Responsive tweak for small screens */
@media (max-width:600px){
  .collapsible-toggle{ font-size:15px; padding:7px 10px }
}
