:root {
  --primary: #632b70; /*#005fa3;*/
  --primary-light: #0084e6; 
  --primary-color: var(--primary);
  --secondary-color: var(--primary-light);
  --accent: #ff6b35;
  --text: #1a1a1a;
  --text-light: #444444;
  --bg: #ffffff;
  --surface: #fafafa;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, monospace; 
  --heading-font: "Gabarito", serif;
     /* Shadow */
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    /* Border Radius */
    --border-radius: 15px;
	--border: #e0e0e0;
    /* Transition */
    --transition-speed: 0.3s;
    --transition-ease: ease-in-out;
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, #ff6600, #ffcc00);
}
@font-face {
  font-display: swap;
}
/* Dark theme */
[data-theme="dark"] {
  --primary: #0096ff;
  --primary-light: #33bbff;
  --accent: #ff8b35;
  --text: #e0e0e0;
  --text-light: #cccccc;
  --bg: #0a121f;
  --surface: #0e1827;
  --border: #2d3950;
}

/* Base layout & mobile-first reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Body typography (mobile-first) */
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive body type */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Main container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Mobile-narrow container */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }
}

/* Base typography scale */
h1, h2, h3, h4, h5, h6 {
  font-family:  var(--heading-font);
  color: var(--primary-color); /* Heading color */
  margin-top: 0;
}
h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin: 0 0 12px 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0 0 10px 0;
}

p {
  margin: 0 0 16px 0;
}

/* Smaller headings for mobile */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }
}

/* Tel/WhatsApp links, phone numbers */
a[href^="tel"],
a[href^="whatsapp"] {
  color: var(--primary);
  text-decoration: underline;
}

a[href^="tel"]:hover,
a[href^="whatsapp"]:hover {
  color: var(--primary-light);
}

/* General text classes (optional helpers) */
.text-muted {
  color: var(--text-light);
}

.text-sm {
  font-size: 0.85rem;
}

.text-lg {
  font-size: 1.1rem;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Layout sections */
/* Base section reset */
section {
  padding: 60px 0;
  position: relative;
}

/* Light section – default look */
.section-light {
  background: var(--bg);
  color: var(--text);
}

/* Highlighted dark section (great for pricing / CTAs) */
.section-dark {
  background: var(--surface);
  color: var(--text);
}

/* Primary-tint section (hero-lite accent) */
.section-primary {
  background: rgba(var(--primary-rgb, 0, 95, 163), 0.04);
  color: var(--text);
}

/* Strong accent-tint section */
.section-accent {
  background: rgba(var(--accent-rgb, 255, 107, 53), 0.06);
  color: var(--text);
}

 
/* Footer section */
.section-footer {
  background: #061020;
  color: #999;
}

/* Dark theme overrides */
[data-theme="dark"] .section-light,
[data-theme="dark"] .section-dark {
  background: var(--bg);
  color: var(--text);
}

[data-theme="dark"] .section-primary {
  background: rgba(var(--primary-rgb, 0, 150, 255), 0.08);
  color: var(--text);
}

[data-theme="dark"] .section-accent {
  background: rgba(var(--accent-rgb, 255, 139, 53), 0.12);
  color: var(--text);
}

/* Responsive padding */
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 32px 0;
  }
}
/* FAQ block headline */
section h2.mt-30 {
  margin: 30px 0 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

section p {
  max-width: 100%; /*700px;*/
}

 
 

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: #ff5c1f;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

 /* Testimonials */
.testimonials {
  background: var(--surface);
}

.testimonial-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  background: var(--bg);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  background: var(--surface);
  position: relative;
}

.pricing-card.highlighted {
  border: 2px solid var(--primary);
  background: #f0f7ff;
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.pricing-card.highlighted:hover {
  transform: scale(1.04);
}

.pricing-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.price span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Free Audit CTA */
.free-audit-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #005fa3 0%, #0084e6 100%);
  color: #fff;
}

.free-audit-cta h2 {
  font-size: 1.5rem;
  margin: 0 0 8px 0;
}

.free-audit-cta p {
  margin: 0 0 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #061020;
  color: #999;
  padding: 60px 0 30px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1rem;
  margin: 0 0 10px 0;
  color: #fff;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-col a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
}

/* Fast-load / UX-friendly */

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Optional: fast web font (you can remove if you don’t use Inter) */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-regular.woff2") format("woff2"),
       url("/assets/fonts/inter-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Use Inter if you want; fallback to system */
body {
  font-family: "Inter", var(--font-main);
}
/**/
/* =========================
   FAQ + SIDEBAR SECTION
========================= */

.emco-sec {
  display: grid;
  gap: 24px;
  align-items: start;
}

@media (min-width: 992px) {
  .emco-sec {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

/* =========================
   MAIN CONTENT
========================= */

.emco-sec article {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.emco-sec article h2 {
  margin-top: 20px;
}

.emco-sec article > p {
  color: var(--text-light);
}

/* ================================
   FAQ
================================ */

.faq-item {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  padding: 16px;
  cursor: pointer;
  transition: background var(--transition-speed),
              box-shadow var(--transition-speed);
}

.faq-item:hover {
  background: rgba(0,0,0,0.03);
  box-shadow: var(--box-shadow);
}

.faq-question {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  color: var(--primary);
  font-weight: bold;
  transition: transform var(--transition-speed);
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn var(--transition-speed);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================
   SIDEBAR
========================= */

.emco-sec aside {
  display: grid;
  gap: 20px;
}

.emco-sec .card {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card p.text-center {
  font-weight: 600;
}

/* =========================
   FORM ELEMENTS
========================= */

form {
  width: 100%;
}

form label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1.4;
  transition:
    border-color var(--transition-speed),
    box-shadow var(--transition-speed);
}

form input::placeholder,
form textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(99, 43, 112, 0.2);
}

form input:disabled,
form select:disabled,
form textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Error */
form .is-error,
form input[aria-invalid="true"] {
  border-color: red;
}

form .error-text {
  margin-top: 4px;
  font-size: 0.75rem;
  color: red;
}

form .helper-text {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* =========================
   BLOG SIDEBAR
========================= */

.sidebar-title {
  font-size: 1rem;
}

.sidebar-blog-title {
  margin: 8px 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.sidebar-blog-title a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.sidebar-blog-title a:hover {
  color: var(--primary);
}

.sidebar-blog-img {
  position: relative;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.sidebar-blog-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-speed);
}

.sidebar-blog-item:hover .sidebar-blog-img img {
  transform: scale(1.03);
}

/* Overlay */
.sidebar-blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Date badge */
.sidebar-blog-date {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  font-size: 0.7rem;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 4px 6px;
  border-radius: 6px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
  .emco-sec {
    grid-template-columns: 1fr;
  }

  .emco-sec article { order: 1; }
  .emco-sec aside   { order: 2; }
}

@media (max-width: 480px) {
  form input,
  form select,
  form textarea {
    font-size: 14px;
  }

  .sidebar-blog-img img {
    aspect-ratio: 4 / 3;
  }
}