/* CALYSSA - STYLESHEET GLOBAL */

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Nunito', sans-serif; color: #2D2D2D; line-height: 1.6; background: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ======================
   HEADER / NAV
   ====================== */
.cal-header { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 16px 24px; position: sticky; top: 0; z-index: 100; }
.cal-header-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.cal-logo { display: flex; align-items: center; gap: 10px; }
.cal-logo img { height: 80px; width: auto; }
.cal-logo-text { font-size: 24px; font-weight: 900; color: #2D2D2D; }
.cal-nav { display: flex; gap: 8px; align-items: center; }
.cal-nav a { padding: 8px 16px; font-size: 15px; font-weight: 600; color: #3A3A3A; border-radius: 8px; transition: all 0.2s; }
.cal-nav a:hover { background: #E8F7E6; color: #3BA534; }
.cal-nav a.active { color: #3BA534; font-weight: 700; }
.cal-nav-cta { background: #2D2D2D !important; color: #fff !important; padding: 10px 20px !important; border-radius: 50px !important; font-weight: 700 !important; }
.cal-nav-cta:hover { background: #3A3A3A !important; }
.cal-menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* ======================
   SECTIONS
   ====================== */
.cal-section { padding: 80px 24px; }
.cal-container { max-width: 1080px; margin: 0 auto; }
.cal-container-narrow { max-width: 800px; margin: 0 auto; }
.cal-bg-light { background: #F8FBF7; }
.cal-bg-green-pale { background: #E8F7E6; }
.cal-bg-dark { background: #2D2D2D; }
.cal-bg-gradient { background: linear-gradient(175deg, #F8FBF7 0%, #E8F7E6 60%, #C5EDBE 100%); }

/* ======================
   TYPOGRAPHY
   ====================== */
.cal-badge { display: inline-block; background: rgba(134,230,124,0.25); border-radius: 50px; padding: 6px 18px; font-size: 12px; font-weight: 800; color: #3BA534; letter-spacing: 1px; margin-bottom: 24px; }
.cal-subtitle { font-size: 12px; font-weight: 800; color: #3BA534; letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 8px; }
.cal-subtitle-dark { color: #86E67C; }

h1.cal-h1 { font-size: clamp(32px, 4.8vw, 52px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
h1.cal-h1 span { color: #3BA534; }
h2.cal-h2 { font-size: 32px; font-weight: 900; text-align: center; margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.2; }
h2.cal-h2-left { text-align: left; }
h3.cal-h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }

.cal-p { font-size: 17px; line-height: 1.75; color: #6B6B6B; max-width: 560px; }
.cal-p-center { font-size: 16px; line-height: 1.7; color: #6B6B6B; max-width: 520px; margin: 0 auto 48px; text-align: center; }

/* ======================
   BUTTONS
   ====================== */
.cal-btn { display: inline-block; padding: 16px 36px; border-radius: 50px; font-size: 16px; font-weight: 700; font-family: 'Nunito', sans-serif; transition: all 0.2s; cursor: pointer; border: none; text-align: center; }
.cal-btn-dark { background: #2D2D2D; color: #fff; }
.cal-btn-dark:hover { background: #3A3A3A; transform: translateY(-1px); }
.cal-btn-outline { background: transparent; color: #2D2D2D; border: 2px solid #2D2D2D; }
.cal-btn-outline:hover { background: #2D2D2D; color: #fff; }
.cal-btn-green { background: #86E67C; color: #2D2D2D; }
.cal-btn-green:hover { background: #5CC952; }
.cal-btn-full { width: 100%; }
.cal-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

/* ======================
   CHECKS / LISTS
   ====================== */
.cal-checks { max-width: 480px; }
.cal-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.cal-check-icon { min-width: 22px; height: 22px; border-radius: 50%; background: rgba(134,230,124,0.3); display: flex; align-items: center; justify-content: center; color: #3BA534; font-weight: 800; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.cal-check span { font-size: 15px; line-height: 1.6; color: #3A3A3A; }

/* ======================
   STATS
   ====================== */
.cal-stats { display: flex; gap: 40px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08); flex-wrap: wrap; }
.cal-stat-val { font-size: 28px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.cal-stat-label { font-size: 13px; color: #6B6B6B; font-weight: 600; }

/* ======================
   GRIDS
   ====================== */
.cal-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cal-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.cal-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.cal-grid-3-fixed { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ======================
   HERO WITH FORM (2 columns)
   ====================== */
.cal-hero-split { background: linear-gradient(175deg, #F8FBF7 0%, #E8F7E6 60%, #C5EDBE 100%); padding: 60px 24px 80px; }
.cal-hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; max-width: 1080px; margin: 0 auto; }

/* ======================
   CARDS
   ====================== */
.cal-card { background: #fff; border-radius: 16px; padding: 32px 28px; border: 1px solid #eee; transition: all 0.3s; }
.cal-card:hover { border-color: #86E67C; box-shadow: 0 8px 30px rgba(134,230,124,0.12); transform: translateY(-4px); }
.cal-card-icon { width: 48px; height: 48px; border-radius: 12px; background: #E8F7E6; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.cal-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.cal-card p { font-size: 14px; line-height: 1.7; color: #6B6B6B; }

.cal-profile { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid rgba(0,0,0,0.06); text-align: center; }
.cal-profile-icon { font-size: 36px; margin-bottom: 16px; }
.cal-profile h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.cal-profile p { font-size: 13px; color: #6B6B6B; line-height: 1.7; }

/* ======================
   STEPS
   ====================== */
.cal-step { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.cal-step-num { min-width: 44px; height: 44px; border-radius: 50%; background: #86E67C; color: #2D2D2D; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; flex-shrink: 0; }
.cal-step h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.cal-step p { font-size: 14px; color: #6B6B6B; line-height: 1.7; }
.cal-step-line { width: 2px; height: 20px; background: #C5EDBE; margin-left: 21px; margin-bottom: 8px; }

.cal-process-card { background: #F8FBF7; border-radius: 16px; padding: 28px 24px; }
.cal-process-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cal-process-card h3 { font-size: 17px; font-weight: 800; margin: 0; }
.cal-process-card p { font-size: 14px; color: #6B6B6B; line-height: 1.7; }

/* ======================
   PROBLEM / SOLUTION
   ====================== */
.cal-ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.cal-ps-card { padding: 24px 20px; border-radius: 14px; }
.cal-ps-even { background: #F8FBF7; }
.cal-ps-odd { background: #E8F7E6; }
.cal-ps-problem { font-size: 14px; font-weight: 700; margin-bottom: 12px; line-height: 1.5; color: #2D2D2D; }
.cal-ps-label { font-size: 13px; font-weight: 800; color: #3BA534; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.cal-ps-answer { font-size: 14px; color: #6B6B6B; line-height: 1.5; }

/* ======================
   DARK SECTION
   ====================== */
.cal-dark-card { padding: 28px 24px; border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.cal-dark-card-icon { font-size: 24px; margin-bottom: 14px; }
.cal-dark-card h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cal-dark-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.cal-dark h2.cal-h2 { color: #fff; }

/* ======================
   SERVICE CATEGORIES
   ====================== */
.cal-svc-cat { background: #fff; border-radius: 18px; padding: 32px 28px; border: 1px solid #eee; transition: all 0.3s; }
.cal-svc-cat:hover { border-color: #86E67C; box-shadow: 0 6px 24px rgba(134,230,124,0.12); }
.cal-svc-cat-icon { font-size: 36px; margin-bottom: 16px; }
.cal-svc-cat h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.cal-svc-desc { font-size: 13px; color: #6B6B6B; line-height: 1.6; margin-bottom: 20px; }
.cal-svc-list { border-top: 1px solid #f0f0f0; padding-top: 16px; }
.cal-svc-item { display: flex; gap: 10px; margin-bottom: 8px; align-items: center; }
.cal-svc-item-mark { color: #3BA534; font-size: 13px; font-weight: 800; }
.cal-svc-item-text { font-size: 13px; color: #3A3A3A; }

.cal-svc-col { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid #eee; }
.cal-svc-col h3 { font-size: 14px; font-weight: 800; color: #3BA534; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ======================
   BANNER
   ====================== */
.cal-banner { background: #2D2D2D; padding: 48px 24px; text-align: center; }
.cal-banner p { font-size: 20px; color: rgba(255,255,255,0.9); font-weight: 600; line-height: 1.7; max-width: 600px; margin: 0 auto; font-style: italic; }
.cal-banner span { color: #86E67C; font-style: normal; }

/* ======================
   CTA
   ====================== */
.cal-cta { background: linear-gradient(180deg, #F8FBF7 0%, #E8F7E6 100%); padding: 80px 24px; text-align: center; }
.cal-cta-inner { max-width: 500px; margin: 0 auto; }
.cal-cta p { font-size: 16px; color: #6B6B6B; line-height: 1.7; margin: 0 auto 32px; }
.cal-phone { font-size: 14px; color: #6B6B6B; margin-top: 24px; }
.cal-phone strong { color: #2D2D2D; }

.cal-quote { font-size: 20px; font-weight: 700; font-style: italic; line-height: 1.7; margin-bottom: 40px; text-align: center; }

/* ======================
   FORMS
   ====================== */
.cal-form-card { background: #fff; border-radius: 20px; padding: 32px 28px; box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04); }
.cal-form-card.sticky { position: sticky; top: 100px; }
.cal-form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; margin-top: 0; }
.cal-form-card .cal-form-sub { font-size: 13px; color: #6B6B6B; margin-bottom: 24px; line-height: 1.5; }

.cal-form { display: flex; flex-direction: column; gap: 14px; }
.cal-form input[type="text"],
.cal-form input[type="tel"],
.cal-form input[type="email"],
.cal-form select,
.cal-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1px solid #ddd; font-size: 15px;
  font-family: 'Nunito', sans-serif; outline: none; box-sizing: border-box;
  background: #fff; color: #2D2D2D; transition: border-color 0.2s;
}
.cal-form input:focus, .cal-form select:focus, .cal-form textarea:focus { border-color: #86E67C; }
.cal-form select { color: #6B6B6B; cursor: pointer; }
.cal-form textarea { resize: vertical; min-height: 80px; }
.cal-form button[type="submit"] {
  width: 100%; padding: 16px; border-radius: 50px;
  background: #2D2D2D; color: #fff; font-size: 15px;
  font-weight: 700; font-family: 'Nunito', sans-serif;
  border: none; cursor: pointer; transition: background 0.2s;
  margin-top: 8px;
}
.cal-form button[type="submit"]:hover:not(:disabled) { background: #3A3A3A; }
.cal-form button[type="submit"]:disabled { background: #999; cursor: not-allowed; }
.cal-form-note { font-size: 13px; color: #aaa; text-align: center; margin-top: 12px; }
.cal-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ======================
   CONTACT PAGE
   ====================== */
.cal-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.cal-info-block { margin-bottom: 32px; }
.cal-info-title { font-size: 13px; font-weight: 800; color: #3BA534; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.cal-info-text { font-size: 16px; line-height: 2; color: #3A3A3A; }
.cal-info-text a { color: #2D2D2D; font-weight: 700; }
.cal-info-text a:hover { color: #3BA534; }
.cal-info-card { background: #fff; border-radius: 16px; padding: 24px; border: 1px solid #eee; margin-bottom: 20px; }
.cal-info-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.cal-info-card p { font-size: 13px; color: #6B6B6B; line-height: 1.6; }

/* ======================
   DIFFERENTIATORS
   ====================== */
.cal-diff { background: #2D2D2D; padding: 56px 24px; }
.cal-diff-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; text-align: center; }
.cal-diff-icon { font-size: 32px; margin-bottom: 12px; }
.cal-diff h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cal-diff p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }

.cal-why { background: #2D2D2D; padding: 64px 24px; }
.cal-why-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; text-align: center; }
.cal-why-icon { font-size: 28px; margin-bottom: 10px; }
.cal-why h3 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cal-why p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }

.cal-cross { padding: 56px 24px; background: #E8F7E6; text-align: center; }
.cal-cross h2 { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.cal-cross > p { font-size: 15px; color: #6B6B6B; line-height: 1.7; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ======================
   FOOTER
   ====================== */
.cal-footer { background: #2D2D2D; padding: 48px 24px 32px; border-top: 3px solid #86E67C; }
.cal-footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.cal-footer-brand { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.cal-footer p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 280px; }
.cal-footer-title { font-size: 12px; font-weight: 800; color: #86E67C; letter-spacing: 1px; margin-bottom: 14px; }
.cal-footer-links { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 2; }
.cal-footer-links a:hover { color: #86E67C; }
.cal-footer-bottom { max-width: 1080px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.cal-footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 968px) {
  .cal-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cal-form-card.sticky { position: static; }
  .cal-contact-grid { grid-template-columns: 1fr; }
  .cal-grid-3-fixed { grid-template-columns: 1fr; }
  .cal-diff-grid { grid-template-columns: 1fr; }
  .cal-why-grid { grid-template-columns: 1fr 1fr; }
  .cal-ps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cal-section { padding: 60px 20px; }
  h1.cal-h1 { font-size: 34px; }
  h2.cal-h2 { font-size: 26px; }
  .cal-hero-split { padding: 40px 20px 60px; }
  .cal-stats { gap: 28px; }
  .cal-buttons { flex-direction: column; }
  .cal-buttons .cal-btn { width: 100%; }
  .cal-footer-inner { flex-direction: column; gap: 24px; }
  .cal-footer-bottom { flex-direction: column; text-align: center; }

  /* Menu mobile */
  .cal-menu-toggle { display: block; }
  .cal-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; gap: 8px; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
  .cal-nav.open { display: flex; }
  .cal-nav a { text-align: center; padding: 12px; }
}
/* ============================
   FAQ AEO/SEO sections
   ============================ */
.cal-faq-section { padding: 80px 24px; background: #F8FBF7; }
.cal-faq-container { max-width: 800px; margin: 0 auto; }
.cal-faq-header { text-align: center; margin-bottom: 48px; }
.cal-faq-header .cal-subtitle { display: block; }
.cal-faq-list { display: flex; flex-direction: column; gap: 12px; }
.cal-faq-item { background: #fff; border-radius: 12px; border: 1px solid #eee; overflow: hidden; transition: all 0.2s; }
.cal-faq-item:hover { border-color: #C5EDBE; box-shadow: 0 4px 16px rgba(134,230,124,0.08); }
.cal-faq-item summary { list-style: none; cursor: pointer; }
.cal-faq-item summary::-webkit-details-marker { display: none; }
.cal-faq-question { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 16px; font-weight: 700; color: #2D2D2D; line-height: 1.4; user-select: none; }
.cal-faq-toggle { min-width: 28px; height: 28px; border-radius: 50%; background: #E8F7E6; color: #3BA534; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; flex-shrink: 0; transition: transform 0.3s; }
.cal-faq-item[open] .cal-faq-toggle { transform: rotate(45deg); }
.cal-faq-answer { padding: 0 24px 24px; font-size: 15px; line-height: 1.7; color: #6B6B6B; }
.cal-faq-answer p { margin-bottom: 12px; }
.cal-faq-answer p:last-child { margin-bottom: 0; }
.cal-faq-answer strong { color: #2D2D2D; }
.cal-faq-answer a { color: #3BA534; font-weight: 700; text-decoration: underline; }
@media (max-width: 768px) {
  .cal-faq-section { padding: 60px 20px; }
  .cal-faq-question { font-size: 15px; padding: 18px 20px; }
  .cal-faq-answer { padding: 0 20px 20px; font-size: 14px; }
}

