/* ===== US Corporate Cross-Border Design System =====
   KONZINE, LLC — professional, global, trustworthy
   Navy + steel blue — commerce & consulting
*/

:root {
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --bg-dark: #0f1c2e;
  --ink: #0f1c2e;
  --muted: #5a6a7e;
  --brand: #1a4b8c;
  --brand-dark: #0f3460;
  --brand-light: #2d6cb5;
  --accent: #c9a227;
  --accent-light: #e0bc4a;
  --line: #dde4ed;
  --shadow: 0 4px 20px rgba(15, 28, 46, 0.07);
  --shadow-lg: 0 12px 40px rgba(15, 28, 46, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Libre Baskerville", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  letter-spacing: 0.01em;
  font-weight: 700;
}

h1 em {
  font-style: italic;
  color: var(--brand);
}

a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ===== Top bar ===== */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 3px solid var(--accent);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-contacts { display: flex; gap: 22px; }
.top-contacts a { color: #fff; font-weight: 500; transition: color 0.15s; }
.top-contacts a:hover { color: var(--accent-light); }

.top-badge {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 10px rgba(26, 75, 140, 0.3);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(26, 75, 140, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--brand-light);
}

.btn-block { width: 100%; }
.contact-call { margin-top: 24px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(26, 75, 140, 0.25);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.brand-type { font-size: 0.64rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--brand); }

.nav-cta { padding: 10px 18px; font-size: 0.86rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 4% 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.mobile-menu a { padding: 10px 6px; color: var(--muted); }
.mobile-menu.open { display: flex; }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 64px;
  background: linear-gradient(165deg, var(--bg-alt) 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(26, 75, 140, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, transparent 40%, rgba(201, 162, 39, 0.04) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.15;
}

.lede {
  margin-top: 20px;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-regions {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-regions strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  font-family: var(--font);
}

.hero-panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 20px;
  border-top: 4px solid var(--brand);
}

.panel-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-stat:last-child { padding-bottom: 0; border-bottom: 0; }
.panel-icon { font-size: 1.4rem; margin-bottom: 4px; }
.panel-label { font-weight: 600; font-size: 0.95rem; font-family: var(--font-display); font-size: 1.05rem; }
.panel-sub { font-size: 0.82rem; color: var(--muted); }

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--bg-dark);
  color: #fff;
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-item strong { display: block; font-size: 0.88rem; font-weight: 600; }
.trust-sub { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-top: 8px;
}

.section-head > p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1rem;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(26, 75, 140, 0.2);
}

.icon {
  font-size: 1.3rem;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(26,75,140,0.08), rgba(201,162,39,0.1));
  border-left: 3px solid var(--brand);
  margin-bottom: 14px;
}

.feature h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font); font-weight: 700; }
.feature p { color: var(--muted); font-size: 0.88rem; }

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--accent);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font); font-weight: 700; }
.process-step p { color: var(--muted); font-size: 0.88rem; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin: 8px 0 18px;
}

.about-copy > p { color: var(--muted); }

.about-detail {
  margin-top: 14px;
  font-size: 0.94rem;
  color: var(--muted);
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.checklist {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 11px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  font-size: 0.94rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.about-info { display: grid; gap: 18px; }

.info-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--brand);
}

.info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--brand);
  font-family: var(--font);
  font-weight: 700;
}

.info-card dl { display: grid; gap: 14px; }
.info-card dt {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-card dd { font-weight: 500; margin-top: 2px; font-size: 0.92rem; }
.info-card dd a { color: var(--brand); font-weight: 600; }
.info-card dd a:hover { text-decoration: underline; }

.regions-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.regions-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.regions-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.regions-list span:last-child {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== Stats ===== */
.stats {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}

.stats .eyebrow { color: var(--accent-light); }
.stats .section-head h2 { color: #fff; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  text-align: center;
  padding: 28px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat p { margin-top: 10px; font-size: 0.86rem; opacity: 0.9; }

/* ===== Quote ===== */
.quote-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
}

.quote-author strong { display: block; color: var(--brand); font-family: var(--font); }
.quote-sub { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin: 8px 0 14px;
}

.contact-copy > p { color: var(--muted); }

.contact-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.contact-list li strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-list a {
  color: var(--brand);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  font-family: var(--font);
  font-weight: 700;
}

.field { margin-bottom: 16px; margin-top: 18px; }
.contact-form .field:first-of-type { margin-top: 14px; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(26, 75, 140, 0.12);
}

.form-privacy { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-note { margin-top: 12px; font-size: 0.9rem; color: var(--brand); min-height: 1.2em; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 40px;
}

.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-type { color: rgba(255,255,255,0.45); }

.footer-tag { margin-top: 14px; font-size: 0.88rem; }

.footer-legal {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-cols h5 {
  color: #fff;
  font-family: var(--font);
  font-size: 0.78rem;
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-cols a {
  display: block;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  font-size: 0.86rem;
  transition: color 0.15s;
}

.footer-cols a:hover { color: var(--accent-light); }

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid,
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .cards,
  .process-grid { grid-template-columns: 1fr; }
  .stat-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-contacts { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
