/* ============================================================
   STYLE — Typography, colors, buttons, global components
   From countonsheep.com template_style.min.css + local overrides
   ============================================================ */

/* ---- CSS Variables (from live site) ---- */
:root {
  --primary-font: "Inter", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --color-black: #303030;
  --color-green: #b1e358;
  --color-blue: #93babf;
  --color-violet: #7f3bed;
  --blue-gradient: radial-gradient(34.98% 55.08% at 50% 50%, #1c363a 0%, #0c2124 100%);
  --color-blue-variant: #02454e;
  --lp-bg-main: #0c0e12;
  
  /* Local aliases */
  --color-primary: #02454E;
  --color-primary-dark: #0C2124;
  --color-accent: #B1E358;
  --color-accent-hover: #9FD13A;
  --color-text: #0c2124;
  --color-text-secondary: #2a4044;
  --color-muted: #5A6B6D;
  --color-surface: #F2F5F6;
  --color-border: #E2E8EA;
  --color-success: #4a9d6f;
  --color-white: #ffffff;
  --color-dark: #0C2124;
  
  --shadow-sm: 0 1px 2px rgba(2, 69, 78, 0.04);
  --shadow: 0 4px 24px rgba(2, 69, 78, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;
  
  --transition: 0.25s ease;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }

p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.text-muted { color: var(--color-muted); }
.text-white { color: #fff; }
.text-accent { color: var(--color-accent); }

/* ---- Eyebrow / Tag ---- */
.tag, .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  background: rgba(28, 124, 138, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ---- Buttons (from live site + local) ---- */
.btn {
  border-radius: 128.72px;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  padding: 19.88px 26.79px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn:hover {
  opacity: 0.85;
}

.btn-green,
.btn-cta {
  background: var(--color-green);
  color: var(--color-black);
  padding: 13px 53px;
  border-radius: 128.72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-green:hover,
.btn-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-white {
  align-items: center;
  background: #fff;
  border-radius: 0;
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  height: 110px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  text-align: center;
  width: 237px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: var(--color-green);
  color: var(--color-black);
  opacity: 1;
}

.btn-black {
  align-items: center;
  background: #303030;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  height: 110px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  text-align: center;
  width: 237px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-black:hover {
  background: var(--color-green);
  color: var(--color-black);
  opacity: 1;
}

/* ---- Cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(28, 124, 138, 0.18);
}

/* ---- Section Headings ---- */
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-heading h2 {
  margin-bottom: 16px;
}
.section-heading p {
  font-size: 17px;
  color: var(--color-muted);
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: var(--color-border);
  border: none;
}
