@import url('https://fonts.googleapis.com/css?family=Roboto:400,700|Poppins:400,500,600&display=swap');

:root{
  --accent: #6b7eb3;
  --accent-dark: #4d5f8f;
  --bg-light: #eff6fa;
  --text: #2b2f38;
  --text-muted: #6a7180;
  --footer-bg: #1a2338;
  --footer-text: #c3cbe1;
  --radius: 15px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family:'Roboto', Arial, sans-serif;
  color:var(--text);
  line-height:1.7;
  background:#fff;
}

h1,h2,h3,h4,h5,h6{
  font-family:'Poppins', Arial, sans-serif;
  font-weight:600;
  margin:0 0 16px;
  line-height:1.3;
}

p{ margin:0 0 16px; color:var(--text-muted); }

a{ color: var(--accent-dark); text-decoration:none; }
a:hover{ color: var(--accent); }

img{ max-width:100%; display:block; }

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

/* Header */
header.site-header{
  position: sticky;
  top:0;
  z-index:100;
  background:#fff;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  max-width:1180px;
  margin:0 auto;
}
.logo img{ height:42px; width:auto; }
nav.main-nav ul{
  list-style:none;
  display:flex;
  gap:28px;
  margin:0;
  padding:0;
}
nav.main-nav a{
  color:var(--text);
  font-weight:500;
  font-size:15px;
  letter-spacing:.2px;
}
nav.main-nav a.active,
nav.main-nav a:hover{ color:var(--accent-dark); }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
  color:var(--text);
}

@media (max-width: 820px){
  nav.main-nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    right:0;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    padding:10px 24px 20px;
  }
  nav.main-nav.open{ display:block; }
  nav.main-nav ul{ flex-direction:column; gap:14px; }
  .nav-toggle{ display:block; }
}

/* Hero */
.hero{
  background:linear-gradient(120deg,#f5f9fc 55%,#eaf0f8 100%);
  padding:70px 0;
  overflow:hidden;
}
.hero-inner{
  display:flex;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}
.hero-copy{ flex:1 1 420px; }
.hero-copy h1{
  font-size:38px;
  color:var(--text);
}
.hero-copy p{ font-size:16px; max-width:480px; }
.hero-img{ flex:1 1 360px; text-align:center; }
.hero-img img{ max-height:420px; margin:0 auto; }

/* Buttons */
.btn{
  display:inline-block;
  padding:13px 30px;
  border-radius:30px;
  background:var(--accent);
  color:#fff;
  font-weight:600;
  font-size:14px;
  letter-spacing:.3px;
  transition:.2s background;
}
.btn:hover{ background:var(--accent-dark); color:#fff; }
.btn-outline{
  background:transparent;
  border:1px solid var(--accent);
  color:var(--accent-dark);
}
.btn-outline:hover{ background:var(--accent); color:#fff; }

/* Sections */
section{ padding:70px 0; }
.section-alt{ background:var(--bg-light); }
.section-title{ text-align:center; max-width:680px; margin:0 auto 46px; }
.section-title p{ margin:0; }

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

.card{
  background:#fff;
  border-radius:var(--radius);
  padding:34px 30px;
  box-shadow:0 0 40px rgba(107,126,179,.12);
  text-align:center;
}
.card img{ height:110px; margin:0 auto 20px; }
.card h4{ margin-bottom:12px; }
.card p{ font-size:14.5px; margin-bottom:0; }

/* Icon row */
.icon-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  text-align:center;
}
@media (max-width:700px){ .icon-row{ grid-template-columns:1fr; } }
.icon-row .icon-item img{ height:70px; margin:0 auto 16px; }
.icon-row h5{ margin:0; }

.why-block{
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}
.why-copy{ flex:1 1 280px; }
.why-icons{ flex:2 1 480px; }

/* Page header (inner pages) */
.page-header{
  background:var(--bg-light);
  padding:56px 0 44px;
  text-align:center;
}
.page-header h1{ margin-bottom:10px; }
.page-header p{ max-width:640px; margin:0 auto; }

/* Content blocks */
.content-block{ max-width:840px; margin:0 auto; }
.content-block h2{ margin-top:36px; }
.bullet-list{
  list-style:none;
  padding:0;
  margin:0 0 20px;
}
.bullet-list li{
  position:relative;
  padding-left:26px;
  margin-bottom:10px;
  color:var(--text-muted);
}
.bullet-list li::before{
  content:'→';
  position:absolute;
  left:0;
  color:var(--accent);
}

.photo-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin:30px 0 10px;
}
@media (max-width:760px){ .photo-strip{ grid-template-columns:1fr; } }
.photo-strip img{ border-radius:12px; height:220px; width:100%; object-fit:cover; }

/* Manufacturing columns */
.mfg-cols{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
@media (max-width:900px){ .mfg-cols{ grid-template-columns:1fr; } }
.mfg-col{
  background:#fff;
  border-radius:var(--radius);
  padding:30px;
  box-shadow:0 0 40px rgba(107,126,179,.12);
}
.mfg-col ul{ list-style:none; padding:0; margin:0; }
.mfg-col li{
  padding:9px 0;
  border-bottom:1px solid #eef1f6;
  color:var(--text-muted);
  font-size:14.5px;
}
.mfg-col li:last-child{ border-bottom:none; }

/* Clients notice */
.notice-box{
  background:var(--bg-light);
  border-left:4px solid var(--accent);
  padding:18px 22px;
  border-radius:8px;
  font-size:14.5px;
  color:var(--text-muted);
  max-width:760px;
  margin:0 auto 40px;
}
.client-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(140px,1fr));
  gap:20px;
  max-width:900px;
  margin:0 auto;
}
.client-tile{
  background:#fff;
  border-radius:12px;
  box-shadow:0 0 20px rgba(107,126,179,.1);
  padding:20px 10px;
  text-align:center;
  color:var(--text-muted);
  font-size:13px;
}
.client-tile .dot{
  width:44px;height:44px;border-radius:50%;
  background:var(--bg-light);
  margin:0 auto 10px;
  display:flex;align-items:center;justify-content:center;
  color:var(--accent-dark);
  font-weight:600;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
@media (max-width:820px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{
  background:#fff;
  border-radius:var(--radius);
  padding:34px;
  box-shadow:0 0 40px rgba(107,126,179,.12);
}
.contact-card h3{ margin-bottom:18px; }
.contact-row{ margin-bottom:18px; }
.contact-row h5{ margin:0 0 4px; color:var(--text-muted); font-weight:500; font-size:13px; text-transform:uppercase; letter-spacing:.5px; }
.contact-row .big{ font-size:19px; font-weight:600; color:var(--text); }
.contact-card img{ border-radius:var(--radius); margin-bottom:0; }

/* Footer */
footer.site-footer{
  background:var(--footer-bg);
  color:var(--footer-text);
  padding:56px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:30px;
  padding-bottom:40px;
}
@media (max-width:820px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-grid img{ max-height:44px; filter:brightness(0) invert(1); margin-bottom:14px; }
.footer-grid h6{ text-transform:uppercase; font-size:12px; letter-spacing:.6px; color:#8a93ad; margin-bottom:6px; }
.footer-grid p.big{ color:#fff; font-size:16px; margin:0 0 14px; }
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-grid li{ margin-bottom:10px; }
.footer-grid a{ color:var(--footer-text); font-size:14.5px; }
.footer-grid a:hover{ color:#fff; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0;
  text-align:center;
  font-size:13px;
  color:#7d859c;
}

.archive-note{
  background:#fff7e6;
  border:1px solid #ffe1a8;
  color:#8a6110;
  font-size:13px;
  padding:10px 18px;
  text-align:center;
}
.archive-note a{ color:#8a6110; text-decoration:underline; }
