/* ===== KORE Grip Pty Ltd — colour palette (industrial / safety / traction) ===== */
:root {
  --primary:    #0b2f4a;   /* deep industrial blue */
  --primary-d:  #08243d;
  --accent:     #e65100;   /* safety-orange accent */
  --accent-d:   #b83f00;
  --bg:         #f7f9fb;
  --card:       #ffffff;
  --text-dark:  #1a1f26;
  --text-light: #5b6776;
  --border:     #d4e0ec;
  --border-d:   #b7c6d9;
  --muted:      #eef3f7;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 4px 14px rgba(0,0,0,0.06);
}

/* ===== reset + base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

/* ===== layout ===== */
.container {
  width: min(92%, 1200px);
  margin-inline: auto;
  padding-block: 4rem 3rem;
}
.section { padding-block: 4rem 3rem; }
.section-sm { padding-block: 2.5rem 2rem; }

/* ===== navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: saturate(1.2);
}
.navbar .container { padding-block: 0.75rem 0.75rem; }
.navbar .inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.brand {
  font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--primary);
}
.brand .dot { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active,
.nav-links a.active::after { content: ""; }
.nav-links a.active::after {
  position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--accent);
}
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--accent); color: #fff; border: none;
  padding: 0.6rem 1.2rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--accent-d); }

/* mobile menu */
.menu-toggle {
  display: none; flex-direction: column; gap: 4px; cursor: pointer;
  background: none; border: none; padding: 0.4rem;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; }

/* ===== hero ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
  color: #fff;
  min-height: 70vh; display: flex; align-items: center;
}
.hero .container { padding-block: 5rem 4rem; }
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 750; letter-spacing: -0.025em; line-height: 1.15;
}
.hero .sub {
  font-size: 1.1rem; opacity: 0.9; max-width: 640px; margin-block: 1.2rem;
}
.hero .btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.4rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em;
  transition: all 0.2s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-d); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-1px);
}

/* ===== value props ===== */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.value-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.09); }
.value-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--primary); }
.value-card p { font-size: 0.92rem; color: var(--text-light); }

/* ===== services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.service-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary); }
.service-card p { font-size: 0.92rem; color: var(--text-light); }
.service-card .more {
  font-size: 0.82rem; font-weight: 600; color: var(--accent); margin-top: 1rem; display: inline-block;
}

/* ===== credentials strip ===== */
.credentials {
  background: var(--muted); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
}
.credentials .cred-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--text-dark);
}
.credentials .cred-item .label {
  font-weight: 600; color: var(--primary);
}
.credentials .badge {
  background: var(--primary); color: #fff; padding: 0.2rem 0.6rem;
  border-radius: 999px; font-size: 0.78rem; font-weight: 600;
}

/* ===== about strip ===== */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: center;
}
.about-strip img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
@media (max-width: 768px) {
  .about-strip { grid-template-columns: 1fr; }
}

/* ===== cta strip ===== */
.cta-strip {
  text-align: center; background: var(--primary); color: #fff;
  border-radius: var(--radius-lg);
}
.cta-strip h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
.cta-strip p { opacity: 0.9; margin-block: 0.7rem; }

/* ===== footer ===== */
footer {
  background: #0a0e13; color: #d6e0ec;
  border-top: 1px solid var(--border-d);
}
footer .top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
footer ul li a { color: #d6e0ec; font-size: 0.88rem; }
footer ul li a:hover { color: var(--accent); }
footer .contact-item { display: flex; align-items: center; gap: 0.5rem; margin-block: 0.6rem; font-size: 0.88rem; }
footer .small { font-size: 0.8rem; color: #8a99ab; }

/* ===== page hero band ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
  color: #fff; text-align: center;
  padding-block: 5rem 3.5rem;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 750; }
.page-hero p { opacity: 0.9; max-width: 620px; margin-inline: auto; margin-top: 1rem; }

/* ===== content styles ===== */
.content { max-width: 760px; margin-inline: auto; }
.content h2 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin-bottom: 1.5rem; color: var(--primary); }
.content p { margin-bottom: 1rem; color: var(--text-light); }
.content ul { margin: 1rem 0; padding-left: 1.4rem; }
.content li { margin-bottom: 0.4rem; color: var(--text-light); }
.legal-section { border-bottom: 1px solid var(--border); padding-block: 1.75rem; }
.legal-section:last-child { border: none; }
.legal-section h3 { color: var(--primary); margin-bottom: 0.6rem; font-size: 1.05rem; }

/* ===== responsive ===== */
@media (max-width: 768px) {
  .container { padding-block: 3rem 2rem; }
  .section { padding-block: 3rem 2rem; }
  .nav-links {
    position: absolute; inset: 100% 0 0 0;
    background: var(--card); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0.75rem; padding: 1.2rem 1.5rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    clip-path: circle(0px at top right);
    transition: clip-path 0.3s ease;
  }
  .nav-links.open { clip-path: circle(1000px at top right); }
  .nav-links .cta-btn { width: 100%; }
  .hero .btns { flex-direction: column; align-items: stretch; }
}
