/* Caseline brochure — South Florida IT Consulting brand */

:root {
  --charcoal: #252525;
  --stem: #b8be65;
  --stem-dark: #9aa14e;
  --steel: #999ea3;
  --haze: #e0ddd8;
  --haze-light: #f5f3f0;
  --azur: #a0b7c9;
  --white: #ffffff;
  --text: #252525;
  --text-dim: #5a5a5a;
  --text-muted: #999ea3;
  --shadow: 0 4px 20px rgba(37, 37, 37, 0.08);
  --shadow-heavy: 0 10px 40px rgba(37, 37, 37, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover { color: var(--stem-dark); }

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--haze);
  padding: 0.85rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
}

.brand-mark { height: 36px; width: auto; }

.brand-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
}

.nav a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--stem-dark);
  color: var(--white) !important;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--haze-light) 0%, var(--white) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 190, 101, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 820px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  margin-bottom: 2.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.hero-meta strong { color: var(--text-dim); font-weight: 700; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--stem-dark);
  border-color: var(--stem-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: transparent;
}

.btn-ghost:hover { color: var(--charcoal); }

.btn-large {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

/* ---------- Sections ---------- */

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--haze-light);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-lead {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

/* ---------- Who it's for strip ---------- */

.section-who {
  padding: 2.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--haze);
  border-bottom: 1px solid var(--haze);
}

.who-inner {
  text-align: center;
}

.who-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.who-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.who-tag {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
}

.who-tag:not(:last-child)::after {
  content: "\00B7";
  margin-left: 1rem;
  color: var(--stem);
  font-weight: 900;
}

@media (max-width: 600px) {
  .who-tag:not(:last-child)::after { display: none; }
}

/* ---------- Grids ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ---------- Cards ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--haze);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-alt .card { background: var(--white); }

.capability { text-align: left; }

.capability:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--stem);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  font-weight: 900;
}

.capability h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.capability p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Integrations ---------- */

.integration-group {
  margin-bottom: 2.5rem;
}

.integration-group:last-child { margin-bottom: 0; }

.integration-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.integration-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--haze);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: all 0.15s ease;
}

.pill:hover {
  border-color: var(--stem);
  background: var(--haze-light);
}

.pill-coming {
  color: var(--text-muted);
  background: transparent;
  border-style: dashed;
}

/* ---------- How it works ---------- */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 1rem;
}

.step-num {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--stem);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step p {
  color: var(--text-dim);
  font-size: 0.96rem;
}

/* ---------- Pricing ---------- */

.pricing-grid {
  margin-top: 0;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
}

.price-card-featured {
  border: 2px solid var(--charcoal);
  box-shadow: var(--shadow-heavy);
  transform: translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--stem);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.price-tier {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.price-dollars {
  font-size: 3rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-unit {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-annual {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--haze);
}

.price-annual strong { color: var(--charcoal); font-weight: 700; }

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.price-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-dim);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--stem-dark);
  font-weight: 900;
}

.price-features li strong { color: var(--charcoal); font-weight: 700; }

.price-card .btn { width: 100%; }

.pricing-fineprint {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-fineprint a {
  color: var(--stem-dark);
  font-weight: 500;
}

.pricing-fineprint a:hover { color: var(--charcoal); }

/* ---------- CTA ---------- */

.section-cta {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.section-cta .section-title { color: var(--white); }

.section-cta .section-lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.section-cta .btn-primary {
  background: var(--stem);
  color: var(--charcoal);
  border-color: var(--stem);
}

.section-cta .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal);
}

.contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1rem;
}

.contact-line { display: flex; gap: 0.8rem; align-items: baseline; }

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  min-width: 50px;
  text-align: right;
}

.section-cta .contact-direct a {
  color: var(--white);
  font-weight: 500;
}

.section-cta .contact-direct a:hover { color: var(--stem); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--haze-light);
  border-top: 1px solid var(--haze);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 0.6rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-meta {
  text-align: right;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-meta p { margin-bottom: 0.35rem; }

.footer-address {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.6rem !important;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .nav { gap: 0.9rem; }
  .nav a:not(.nav-cta) { display: none; }

  .hero { padding: 4rem 0 3.5rem; }
  .section { padding: 3.5rem 0; }

  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-meta { text-align: center; }

  .price-card-featured { transform: none; }
}
