/* ===========================================================
   GlobalTex BV — shared stylesheet
   =========================================================== */

:root {
  --navy:        #0e2a47;
  --navy-deep:   #081d33;
  --navy-soft:   #16385c;
  --accent:      #c8843a;   /* warm textile amber */
  --accent-soft: #e0a55f;
  --ink:         #1a2230;
  --muted:       #5b6675;
  --line:        #e2e6ec;
  --bg:          #ffffff;
  --bg-alt:      #f5f7fa;
  --bg-tint:     #eef2f7;
  --white:       #ffffff;
  --radius:      12px;
  --maxw:        1140px;
  --shadow:      0 1px 3px rgba(14, 42, 71, .06), 0 12px 32px -12px rgba(14, 42, 71, .18);
  --font: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; color: var(--navy); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1rem; }
a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); font-size: 1.2rem; letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 38px; height: 38px; flex: none; display: block; }
.brand small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--ink); font-weight: 500; padding: 8px 14px; border-radius: 8px; font-size: .95rem;
}
.nav-links a:hover { background: var(--bg-tint); text-decoration: none; color: var(--navy); }
.nav-links a.active { color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; font-weight: 600;
  padding: 11px 22px; border-radius: 999px; border: 0; cursor: pointer;
  font-size: .95rem; transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 18px -6px rgba(200,132,58,.6);
}
.btn:hover { background: var(--accent-soft); text-decoration: none; transform: translateY(-1px); }
.btn.ghost {
  background: transparent; color: var(--navy); box-shadow: none;
  border: 1.5px solid var(--line);
}
.btn.ghost:hover { background: var(--bg-tint); border-color: #cfd6df; }
.btn.light { background: #fff; color: var(--navy); box-shadow: none; }
.btn.light:hover { background: var(--bg-tint); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #eaf1f8;
  background: radial-gradient(1200px 600px at 80% -10%, var(--navy-soft) 0%, var(--navy) 45%, var(--navy-deep) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(255,255,255,.03) 22px 23px),
    repeating-linear-gradient(25deg, transparent 0 22px, rgba(200,132,58,.05) 22px 23px);
}
.hero-inner { position: relative; z-index: 1; padding: 96px 0 104px; max-width: 720px; }
.hero .eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-soft);
  padding: 6px 14px; border: 1px solid rgba(200,132,58,.35); border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { color: #fff; }
.hero p.lead { font-size: 1.2rem; color: #c3d2e2; margin: 18px 0 32px; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 56px; }
.hero-stats .stat strong { display: block; font-size: 1.9rem; color: #fff; font-weight: 700; line-height: 1; }
.hero-stats .stat span { font-size: .85rem; color: #9db2c8; letter-spacing: .02em; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
}
.section-head h2 { margin-top: 10px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.bg-alt { background: var(--bg-alt); }

/* ---------- Product grid ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6dee8; }
.card .icon {
  width: 46px; height: 46px; border-radius: 10px; margin-bottom: 18px;
  display: grid; place-items: center; background: var(--bg-tint); color: var(--navy);
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Feature / why-us split ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .tick {
  flex: none; width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(200,132,58,.12); color: var(--accent);
}
.feature-list h3 { margin: 0 0 3px; font-size: 1.02rem; }
.feature-list p { margin: 0; color: var(--muted); font-size: .93rem; }
.panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 16px; padding: 40px; color: #dbe7f2; position: relative; overflow: hidden;
}
.panel::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: repeating-linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,.04) 12px 13px);
}
.panel h3 { color: #fff; font-size: 1.3rem; position: relative; }
.panel p { position: relative; color: #b9cadb; }
.panel ul { position: relative; margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.panel ul li { display: flex; gap: 10px; align-items: baseline; font-size: .95rem; }
.panel ul li::before { content: "—"; color: var(--accent-soft); }

/* ---------- CTA band ---------- */
.cta {
  background: var(--bg-tint); border-radius: 18px; padding: 56px; text-align: center;
  border: 1px solid var(--line);
}
.cta h2 { margin-bottom: 10px; }
.cta p { color: var(--muted); max-width: 520px; margin: 0 auto 26px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fff;
  display: flex; gap: 16px; margin-bottom: 18px;
}
.info-card .icon {
  flex: none; width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--navy);
}
.info-card h3 { font-size: 1rem; margin: 0 0 3px; }
.info-card p, .info-card address { margin: 0; color: var(--muted); font-style: normal; font-size: .95rem; }
.info-card a { color: var(--navy); font-weight: 600; }

form .field { margin-bottom: 18px; }
form label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
form input, form textarea, form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,132,58,.15);
}
form textarea { resize: vertical; min-height: 130px; }
.form-wrap { border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #9db2c8; padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand small { color: #7d93aa; }
.site-footer p { font-size: .92rem; color: #9db2c8; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col a, .footer-col address { display: block; color: #9db2c8; font-size: .92rem; margin-bottom: 8px; font-style: normal; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: .84rem; color: #6f869d; }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links a:not(.btn) { display: none; }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero-inner { padding: 68px 0 76px; }
  .cta, .panel { padding: 34px 24px; }
  .hero-stats { gap: 28px; }
}
