/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a3a5c;
  --navy-dark: #0f2340;
  --orange: #e85d04;
  --orange-light: #ff7f3f;
  --bg: #f8f9fb;
  --white: #ffffff;
  --text: #1e2a3a;
  --muted: #5a6a7e;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(26,58,92,.08);
  --shadow-lg: 0 8px 40px rgba(26,58,92,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(26,58,92,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: var(--navy);
}
.logo-light span { color: #cdd9e8; }
.logo-light { color: #cdd9e8; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-privacy {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .85rem !important;
}
.nav-privacy:hover { border-color: var(--orange) !important; color: var(--orange) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
}

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 24px; font-size: .95rem; font-weight: 500; color: var(--muted);
}
.mobile-menu a:hover { color: var(--navy); background: var(--bg); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all .2s; border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,93,4,.35); }
.btn-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section { padding: 96px 0; }
.section-label {
  display: inline-block; margin-bottom: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange);
}
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-desc { color: var(--muted); font-size: 1.05rem; }
.section-header.light h2, .section-header.light .section-desc { color: #fff; }
.section-header.light .section-desc { opacity: .8; }

h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
  padding: 80px 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1e4d7b 55%, #2a6496 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 720px;
}
.hero-label {
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.78); max-width: 560px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { display: flex; flex-direction: column; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ── About ── */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: .88rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
}
.about-text p {
  color: var(--muted); line-height: 1.75; margin-bottom: 18px;
}
.about-pillars { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-pillars li { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon { font-size: .6rem; color: var(--orange); margin-top: 6px; flex-shrink: 0; }
.about-pillars strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-pillars span { font-size: .9rem; color: var(--muted); }

/* ── Products ── */
.products { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .2s;
  background: var(--white);
}
.product-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-icon {
  width: 56px; height: 56px;
  color: var(--c, var(--orange));
  margin-bottom: 20px;
}
.product-icon svg { width: 100%; height: 100%; }
.product-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.product-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.product-specs { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.product-specs li {
  font-size: .8rem; font-weight: 500; color: var(--muted);
  padding-left: 14px; position: relative;
}
.product-specs li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--orange); font-size: .75rem;
}

/* ── Exports ── */
.exports { background: var(--navy); }
.exports .section-label { color: rgba(232,93,4,.9); }
.countries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 36px;
}
.country-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background .2s;
}
.country-card:hover { background: rgba(255,255,255,.1); }
.flag { font-size: 2rem; display: block; margin-bottom: 12px; }
.country-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.country-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.exports-note {
  text-align: center; color: rgba(255,255,255,.55); font-size: .9rem;
}
.exports-note a { color: var(--orange); text-decoration: underline; }

/* ── Why Us ── */
.whyus { background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.why-num {
  font-size: 2.5rem; font-weight: 800;
  color: var(--orange); opacity: .25;
  line-height: 1; margin-bottom: 16px;
}
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── Contact ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-text p { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: .95rem; }
.contact-item a { color: var(--orange); }
.contact-item a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form span { font-size: .82rem; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.contact-form input,
.contact-form textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .95rem; font-family: inherit;
  color: var(--text); background: var(--bg);
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); background: var(--white); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a0aec0; }

/* ── Footer ── */
.footer { background: var(--navy-dark); padding: 48px 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; padding-bottom: 40px;
}
.footer-brand p { margin-top: 14px; font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }

/* ── Featured Products (Magnaslot & Safebat) ── */
.featured-products {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 72px;
}
.featured-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.featured-header {
  padding: 36px 36px 28px;
}
.featured-blue .featured-header { background: var(--navy); }
.featured-orange .featured-header { background: linear-gradient(135deg, #b34500, #e85d04); }
.feat-tag {
  display: inline-block; margin-bottom: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  padding: 4px 10px; border-radius: 4px;
}
.featured-header h3 {
  font-size: 2rem; font-weight: 800; color: #fff; margin: 0 0 4px; line-height: 1.1;
}
.feat-sub { font-size: .9rem; color: rgba(255,255,255,.65); font-weight: 500; }

.featured-body {
  padding: 28px 36px 36px; background: var(--bg);
  flex: 1; display: flex; flex-direction: column; gap: 16px;
}
.featured-body p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

.feat-specs {
  border: 1.5px solid var(--border); border-radius: 10px;
  overflow: hidden; margin: 4px 0;
}
.spec-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--border);
  font-size: .85rem;
}
.spec-item:last-child { border-bottom: none; }
.spec-label {
  flex-shrink: 0; width: 140px;
  font-weight: 700; color: var(--navy); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em;
}
.spec-val { color: var(--muted); line-height: 1.4; }

.feat-models { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.model-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
  font-size: .82rem; font-weight: 700; color: var(--navy);
}
.model-pill small { font-weight: 400; color: var(--muted); font-size: .75rem; }

/* ── Other Products ── */
.other-products-header {
  text-align: center; margin-bottom: 32px;
}
.other-products-header h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
}
.other-products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.other-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 24px 22px; background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.other-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(232,93,4,.1); }
.other-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.other-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── Privacy Page ── */
.privacy-hero {
  background: linear-gradient(135deg, var(--navy-dark), #1e4d7b);
  padding: 72px 0 56px;
}
.privacy-hero h1 { color: #fff; font-size: 2.2rem; margin-bottom: 10px; }
.privacy-hero p { color: rgba(255,255,255,.6); font-size: .95rem; }
.privacy-body { padding: 64px 0 96px; }
.privacy-content { max-width: 780px; }
.privacy-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 36px 0 10px; }
.privacy-content p, .privacy-content li { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.privacy-content ul { padding-left: 20px; }
.privacy-content a { color: var(--orange); text-decoration: underline; }
.privacy-placeholder {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 40px 32px; margin: 32px 0;
  background: var(--bg); text-align: center; color: var(--muted);
}
.privacy-placeholder strong { display: block; color: var(--navy); margin-bottom: 8px; font-size: 1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 16px; bottom: -14px; }
  .products-grid { grid-template-columns: 1fr; }
  .featured-products { grid-template-columns: 1fr; }
  .other-products-grid { grid-template-columns: 1fr; }
  .featured-header { padding: 28px 24px 20px; }
  .featured-body { padding: 24px 24px 28px; }
  .spec-label { width: 110px; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .footer-inner { flex-direction: column; gap: 28px; }
}

@media (max-width: 480px) {
  .countries-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
