/*© 2014 5ive Technologies Inc. http://www.5iveTech.com - All Rights Reserved*/
/* =========================
   Base Styles
========================= */
body { color: #1f2937; background: #ffffff; }
img { max-width: 100%; }
a { text-decoration: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.narrow { max-width: 800px; }
#divWrapper { font-family: "Inter", Arial, sans-serif; line-height: 1.6; }
/* =========================
   Navigation
========================= */
.navbar { position: sticky; top: 0; z-index: 100; background: #252525; border-bottom: 1px solid #e5e7eb; }
     .navbar .container { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.logo { font-size: 1.5rem; font-weight: 700; color: #0f766e; }
nav { display: flex; gap: 25px; align-items: center; }
     nav a { color: #374151; color: #F5F5F5; font-weight: 500; transition: color 0.3s; }
          nav a:hover { color: #0f766e; }
/* =========================
   Buttons
========================= */
.btn { display: inline-block; padding: 12px 22px; border-radius: 8px; font-weight: 600; transition: all 0.3s ease; }
.btn-primary { background: #0f766e; color: white; }
     .btn-primary:hover { background: #115e59; }
.btn-secondary { border: 1px solid #cbd5e1; color: #374151; background: white; }
     .btn-secondary:hover { background: #f3f4f6; }
/* =========================
   Hero Section
========================= */
.hero { padding: 25px 0px; background: linear-gradient( 135deg, #f8fafc 0%, #eefdf6 100% ); text-align: left; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.eyebrow { display: inline-block; background: #d1fae5; color: #065f46; padding: 6px 12px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; font-weight: bold; }
.hero p { font-size: 1.15rem; color: #4b5563; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 15px; margin-bottom: 20px; }
.hero-proof { color: #6b7280; font-size: 0.95rem; }
/* =========================
   Dashboard Preview
========================= */
.hero-card { background: white; border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); padding: 25px; }
.dashboard-preview { display: flex; flex-direction: column; gap: 15px; }
.metric { display: flex; justify-content: space-between; align-items: center; background: #f8fafc; padding: 15px; border-radius: 10px; }
     .metric span { color: #6b7280; }
     .metric strong { font-size: 1.3rem; }
.intake-list { display: flex; flex-direction: column; gap: 10px; }
.intake { padding: 12px; border-radius: 8px; background: #f3f4f6; }
.intake-overdue { background: #fee2e2; color: #991b1b; font-weight: 600; }
/* =========================
   Sections
========================= */
section { padding: 33px 0; }
     section h2 { text-align: center; font-size: 2.4rem; margin-bottom: 50px; font-weight: bold; }
/* =========================
   Problem Section
========================= */
.problem { background: #f8fafc; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.card,
.feature-card { background: white; padding: 30px; border-radius: 16px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
     .card h3,
     .feature-card h3 { margin-bottom: 15px; font-weight: bold; }
     .card ul { list-style-position: inside; padding: 0 }
     .card li { margin-bottom: 10px; text-align: left; }
.highlight { border: 2px solid #0f766e; }
/* =========================
   Features
========================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-card { transition: transform 0.3s ease; text-align: left; }
     .feature-card:hover { transform: translateY(-5px); }
     .feature-card p { color: #6b7280; }
/* =========================
   Positioning
========================= */
.positioning { background: #0f172a; color: white; text-align: center; }
     .positioning h2 { color: white; }
     .positioning p { color: #d1d5db; margin-top: 20px; }
     .positioning .blockquote { margin-top: 30px; font-size: 1.4rem; font-weight: 600; color: #a7f3d0; }
/* =========================
   CTA
========================= */
.cta { text-align: center; background: linear-gradient( 135deg, #0f766e, #14b8a6 ); color: #6b7280; }
     .cta h2 { margin-bottom: 15px; }
     .cta p { max-width: 650px; margin: 0 auto 30px; font-size: 1.1rem; }
     .cta .btn-primary { background: white; color: #0f766e; }
          .cta .btn-primary:hover { background: #f3f4f6; }

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
     .hero-grid,
     .problem-grid,
     .feature-grid { grid-template-columns: 1fr; }
     .hero { text-align: left; }
     .hero-actions { justify-content: center; }
     .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
     .navbar .container { flex-direction: column; gap: 15px; }
     nav { flex-wrap: wrap; justify-content: center; }
     .hero h1 { font-size: 2rem; }
     section h2 { font-size: 1.8rem; }
}
/* Pricing Section */
#pricing { padding: 72px 25px 0px 25px; background: #f8fafc; text-align: center; }
     #pricing .container { max-width: 1200px; margin: 0 auto; }
     #pricing h2 { font-size: 2.5rem; color: #1f2937; margin-bottom: 15px; }
.pricing-intro { max-width: 700px; margin: 0 auto 50px; color: #6b7280; font-size: 1.1rem; line-height: 1.6; }
/* Pricing Cards Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 50px; }
/* Individual Card */
.pricing-card { background: #ffffff; padding: 35px 30px; border-radius: 16px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: left; position: relative; }
     .pricing-card:hover { transform: translateY(-8px); box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12); }
     .pricing-card h3 { font-size: 1.6rem; color: #111827; margin-bottom: 20px; font-weight: bold; }
.price { font-size: 2rem; font-weight: 700; color: #2563eb; margin-bottom: 25px; }
