/* Color Dye — Global Stylesheet */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:   #1a2e5a;
  --accent:    #3a7bd5;
  --accent2:   #6c3fc5;
  --light:     #f4f7fb;
  --white:     #ffffff;
  --text:      #2d3748;
  --muted:     #718096;
  --border:    #e2e8f0;
  --gradient:  linear-gradient(135deg, #1a2e5a 0%, #3a7bd5 60%, #6c3fc5 100%);
  --radius:    8px;
  --shadow:    0 4px 24px rgba(26,46,90,.10);
  --max-w:     1140px;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

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

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

/* ── NAV ── */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.5px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
  text-decoration: none;
}

.nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: .88; text-decoration: none !important; }

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

/* ── HERO ── */

.hero {
  background: var(--gradient);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  opacity: .88;
  max-width: 600px;
  margin: 0 auto 36px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--light); text-decoration: none; color: var(--primary); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  margin-left: 12px;
}
.btn-outline:hover { background: rgba(255,255,255,.1); text-decoration: none; color: var(--white); }
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { opacity: .88; text-decoration: none; color: var(--white); }
.hero-btns { margin-top: 8px; }

/* ── SECTIONS ── */

section { padding: 80px 0; }

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.bg-light { background: var(--light); }

/* ── CARDS ── */

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.card p  { color: var(--muted); font-size: .95rem; }

/* ── STATS ── */

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 48px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: var(--muted); font-size: .9rem; font-weight: 500; }

/* ── TWO-COL ── */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child  { order: 1; }

.visual-block {
  border-radius: 16px;
  background: var(--gradient);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 5rem;
}

/* ── PAGE HERO ── */

.page-hero {
  background: var(--gradient);
  color: var(--white);
  padding: 60px 0 48px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; margin-bottom: 12px; }

.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .9rem; opacity: .8; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb span { opacity: .6; }

/* ── FORM ── */

.form-group { margin-bottom: 20px; }
label { display: block; font-weight: 600; font-size: .9rem; color: var(--primary); margin-bottom: 6px; }
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 130px; }

/* ── INFO CARD ── */

.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; background: var(--white);
  border: 1px solid var(--border); border-radius: 12px; margin-bottom: 16px;
}
.info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 1.2rem; flex-shrink: 0;
}
.info-card h4 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.info-card p  { font-size: .9rem; color: var(--muted); }

/* ── LEGAL ── */

.legal-body { max-width: 780px; margin: 0 auto; padding: 64px 24px; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin: 36px 0 10px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { font-size: .97rem; color: var(--text); margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 16px; }
.legal-body strong { color: var(--primary); }
.last-updated {
  display: inline-block; background: var(--light);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 14px; font-size: .85rem; color: var(--muted); margin-bottom: 32px;
}

/* ── TEAM ── */

.team-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; transition: box-shadow .25s;
}
.team-card:hover { box-shadow: var(--shadow); }
.avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,.5);
}
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-card span { font-size: .85rem; color: var(--muted); }

/* ── VALUES ── */

.values-list { list-style: none; padding: 0; }
.values-list li { display: flex; gap: 12px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.values-list li:last-child { border-bottom: none; }
.check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0; margin-top: 2px;
}
.values-list strong { color: var(--primary); display: block; margin-bottom: 2px; }
.values-list p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ── FOOTER ── */

footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }

/* ── RESPONSIVE ── */

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > *:first-child { order: 0; }
  .two-col.reverse > *:last-child  { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { gap: 36px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 99;
  }
  .hamburger { display: flex; }
  .hero { padding: 64px 0 56px; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .hero-btns { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .stats { gap: 24px; }
}







