/* ============================================================
   You Can Calculate Bookkeeping — Main Stylesheet
   assets/css/main.css
   ============================================================ */
/* Import Google Fonts (Example: Montserrat and Open Sans) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --green-dark:   #1a5c2a;
  --green-mid:    #2e7d32;
  --green-bright: #4caf50;
  --lime:         #c8e000;
  --lime-hover:   #b3cc00;
  --purple:       #6c3fa0;
  --white:        #ffffff;
  --off-white:    #f8f9f4;
  --text-dark:    #1a1a1a;
  --text-muted:   #555555;
  --border:       #e0e0d0;
  --dark-bg:      #0d1f13;
  --dark-card:    #152018;
  --font-display: 'poppins', sans-serif;
  --font-body:    'Lato', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.12);
  --transition:   all .3s ease;
}


/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2rem,   4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw,   2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw,   1.55rem); }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
p  { color: var(--text-muted); line-height: 1.75; }
em { font-style: normal; color: var(--green-mid); }

/* ── Utilities ─────────────────────────────────────────────── */
.container { 
    width: 96%;         /* Takes up almost the entire screen */
    max-width: 1800px;  /* Huge increase from 1440px for big desktop monitors */
    margin: 0 auto; 
    padding: 0 20px;    /* Matches your 20px edge padding */
}
.section-pad    { padding: 80px 0; }
.text-center    { text-align: center; }
.text-white     { color: var(--white) !important; }
.text-green     { color: var(--green-mid); }
.bg-off         { background: var(--off-white); }
.bg-dark        { background: var(--dark-bg); }
.grid-2         { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3         { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4         { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.section-label {
  display: inline-block;
  background: rgba(200,224,0,.15);
  color: var(--lime);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(200,224,0,.2);
}
/* override on light bg */
.why-section .section-label,
.about-hero .section-label,
.mission-section .section-label,
.testimonials-section .section-label,
.what-affects .section-label,
.pricing-hero .section-label,
.learning-hero .section-label,
.contact-hero .section-label,
.blog-header .section-label {
  background: rgba(46,125,50,.1);
  color: var(--green-mid);
  border-color: rgba(46,125,50,.2);
}

.section-head { margin-bottom: 48px; }
.section-intro { max-width: 560px; margin: 10px auto 0; font-size: 1.05rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary  { background: var(--lime); color: var(--green-dark); border-color: var(--lime); }
.btn-primary:hover  { background: var(--lime-hover); border-color: var(--lime-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,224,0,.35); }
.btn-green    { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.btn-green:hover    { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); }
.btn-dark     { background: var(--dark-bg); color: var(--white); border-color: var(--dark-bg); }
.btn-dark:hover     { background: var(--green-dark); border-color: var(--green-dark); }
.btn-white    { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-white:hover    { background: var(--lime); border-color: var(--lime); }
.btn-outline  { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline:hover  { background: var(--green-dark); color: var(--white); }
.btn-outline-white  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-full     { width: 100%; text-align: center; }
.btn-large    { padding: 16px 36px; font-size: 1rem; }

/* ── Navigation ────────────────────────────────────────────── */
/* Force the navbar to touch the edges of the screen */
.nav-wrap .container {
    width: 100%;
    max-width: 100%; /* Removes the maximum width limit */
    padding: 0 20px; /* Exactly 20px padding on the left and right */
}
.nav-wrap {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-weight: 700; font-size: 1.1rem;
  font-family: var(--font-display); flex-shrink: 0;
}
.nav-logo img { max-height: 48px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-dark); font-weight: 700; line-height: 1.2; }
.nav-logo-sub  { font-size: .68rem; color: var(--text-muted); font-weight: 400; letter-spacing: .07em; text-transform: uppercase; }

/* Desktop links */
.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 0; 
    
    /* These two lines push the menu to the right! */
    margin-left: auto;  
    margin-right: 40px; /* Adds a nice gap between the menu and the button */
}
.nav-menu-list { display: flex; align-items: center; gap: 28px; }

.nav-menu-list li a {
    /* Increased size from .9rem to 1.05rem */
    font-size: 1.3rem; 
    
    /* Increased weight from 500 to 600 (Semi-bold) */
    font-weight: 900; 
    
    color: var(--text-dark);
    transition: var(--transition); 
    position: relative; 
    padding-bottom: 2px;
    letter-spacing: 0.01em; /* Adds a tiny bit of breathing room between letters */
}
.nav-menu-list li a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--green-mid); transition: var(--transition);
}
.nav-menu-list li a:hover,
.nav-menu-list li.current-menu-item > a { color: var(--green-mid); }
.nav-menu-list li.current-menu-item > a::after,
.nav-menu-list li a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 999;
  padding: 80px 24px 32px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-list li a {
  display: block; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem; font-weight: 600; color: var(--text-dark);
}
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 1.8rem; color: var(--text-dark);
}
.mobile-cta { margin-top: 24px; text-align: center; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { padding: 80px 0 60px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,175,80,.1); color: var(--green-mid);
  padding: 6px 14px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  margin-bottom: 20px; border: 1px solid rgba(76,175,80,.2);
}
.hero-title { margin-bottom: 18px; }
.hero-subtitle { font-size: 1.08rem; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge-item {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 8px; font-size: .78rem; font-weight: 600;
}
.hero-img-wrap { position: relative; }
.hero-img { width: 100%; height: 460px; border-radius: var(--radius-lg); object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 460px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.hero-stat-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 14px 18px; font-size: .85rem; min-width: 130px;
}
.hero-stat-card strong { display: block; font-size: 1.35rem; color: var(--green-dark); font-family: var(--font-display); font-weight: 700; }
.hero-stat-card--left  { bottom: 24px; left: -20px; }
.hero-stat-card--right { top: 24px; right: -20px; background: var(--green-dark); color: rgba(255,255,255,.8); }
.hero-stat-card--right strong { color: var(--lime); }

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar { background: var(--dark-bg); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500; }
.trust-icon { color: var(--lime); font-size: 1rem; }

/* ── New Stats Layout ───────────────────────────────────────── */
.stats-new-section { padding: 40px 0 80px; }
.stats-new-box {
    background: #eef2f5; /* Light grey/blue background */
    border-radius: 40px;
    padding: 80px 70px;
}
.stats-new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Left Content */
.stats-content h2 {
    font-size: 2.8rem;
    color: #1a1040; /* Dark navy/purple */
    margin-bottom: 24px;
    line-height: 1.2;
}
.stats-content h2 em {
    font-style: italic;
    font-weight: 700;
    color: #1a1040;
}
.stats-content p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Right Numbers Stack */
.stats-numbers {
    display: flex;
    flex-direction: column;
}
.stat-new-item {
    padding: 32px 0;
    border-bottom: 2px solid #d5dfe6; /* Light separator line */
}
.stat-new-item:first-child { padding-top: 0; }
.stat-new-item:last-child { border-bottom: none; padding-bottom: 0; }

.stat-new-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--green-mid);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-new-num .plus {
    color: var(--lime); /* Makes the + yellow/lime like the screenshot */
}
.stat-new-label {
    color: #1a1040;
    font-weight: 700;
    font-size: 1.15rem;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .stats-new-layout { 
        grid-template-columns: 1fr; 
        gap: 60px; 
        text-align: left; /* Keeps text aligned left on mobile for readability */
    }
    .stats-new-box { padding: 50px 30px; border-radius: 24px; }
    .stats-content h2 { font-size: 2.2rem; }
}

/* ── Services Section (dark) ───────────────────────────────── */
.services-section { background: var(--dark-bg); padding: 80px 0; }
.services-grid { margin-top: 0; }
.service-card {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 36px 28px; transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--lime); box-shadow: 0 12px 40px rgba(200,224,0,.1); }
.service-card--featured { border-color: rgba(200,224,0,.3); }
.service-icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.icon-green  { background: rgba(46,125,50,.2); }
.icon-purple { background: rgba(108,63,160,.2); }
.icon-lime   { background: rgba(200,224,0,.15); }
.service-card h3  { color: var(--white); margin-bottom: 10px; }
.service-card p   { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 16px; }
.service-price    { color: var(--lime); font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; }
.service-list li  {
  color: rgba(255,255,255,.7); font-size: .85rem;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: 8px;
}
.service-list li::before { content: "✓"; color: var(--lime); font-weight: 700; flex-shrink: 0; }
.service-card .btn { margin-top: 20px; }

/* ── Why Us ────────────────────────────────────────────────── */
.why-section { padding: 80px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--off-white), #e8f5e9);
  height: 460px; display: flex; align-items: center; justify-content: center;
}
.why-img-placeholder { font-size: 6rem; }
.why-photo { width: 100%; height: 100%; object-fit: cover; }
.why-content h2 { margin: 10px 0 14px; }
.why-intro { margin-bottom: 28px; }
.why-check { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.why-check-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-mid); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0; margin-top: 2px;
}
.why-check h4 { margin-bottom: 3px; }
.why-check p  { font-size: .88rem; margin: 0; }

/* ── Comparison ────────────────────────────────────────────── */
.compare-section { background: var(--off-white); padding: 80px 0; }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.compare-table th { padding: 18px 22px; font-size: .9rem; }
.compare-table th:first-child { text-align: left; background: var(--lime); text-align: center; }
.compare-table th.us   { background: var(--green-bright); color: var(--white); text-align: center; }
.compare-table th.them { background: #4a4a4a; color: var(--white); text-align: center; }
.compare-table td { padding: 13px 22px; font-size: .88rem; background: var(--white); border-bottom: 1px solid var(--border); }
.compare-table td:first-child { font-weight: 600; }
.compare-table td.us-col   { text-align: center; color: var(--green-mid); }
.compare-table td.them-col { text-align: center; color: #e53935; }
.compare-table tr:last-child td { border-bottom: none; }
.check-icon { color: var(--green-mid); font-weight: 700; }
.cross-icon { color: #e53935; font-weight: 700; }
.compare-section { 
    background: var(--off-white); 
    padding: 80px 0; 
}

.compare-table-wrap { 
    overflow-x: auto; 
    /* Add these lines below to constrain the width and center it */
    max-width: 1100px;  /* This is the "sweet spot" for comparison tables */
    margin: 0 auto;     /* This centers the table */
    padding: 0 20px;    /* Adds a little breathing room on mobile */
}

.compare-table { 
    width: 100%; 
    border-collapse: collapse; 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
    background: var(--white); /* Ensures the background is solid white */
}
/* Update this list to include .compare-section */
.why-section .section-label,
.about-hero .section-label,
.mission-section .section-label,
.testimonials-section .section-label,
.compare-section .section-label, /* Add this line */
.blog-header .section-label {
    background: rgba(46,125,50,.1);
    color: var(--green-mid);
    border-color: rgba(46,125,50,.2);
}

/* ── Steps ─────────────────────────────────────────────────── */
.steps-section { background: var(--dark-bg); padding: 80px 0; }
.steps-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 32px; left: 10%; width: 80%; height: 2px;
  background: rgba(200,224,0,.18); z-index: 0;
}
.step-item { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border: 3px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--lime);
  margin: 0 auto 18px;
}
.step-item h4 { color: var(--white); margin-bottom: 8px; }
.step-item p  { color: rgba(255,255,255,.5); font-size: .82rem; }

/* Pricing steps (vertical list) */
.pricing-steps { background: var(--dark-bg); padding: 80px 0; }
.steps-list { max-width: 720px; margin: 0 auto; }
.step-block { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 36px; }
.step-block-num {
  width: 68px; height: 68px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border: 2px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--lime);
}
.step-block-content h3 { color: var(--white); margin-bottom: 6px; }
.step-block-content p  { color: rgba(255,255,255,.6); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; box-shadow: var(--shadow);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testi-stars  { color: #ffc107; font-size: 1rem; margin-bottom: 12px; }
.star         { display: inline-block; }
.testi-title  { font-weight: 700; margin-bottom: 10px; }
.testi-text   { font-size: .9rem; margin-bottom: 16px; }
.testi-author { font-weight: 600; font-size: .85rem; color: var(--green-mid); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1b5e20 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; background: rgba(200,224,0,.06); border-radius: 50%;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 400px; height: 400px; background: rgba(200,224,0,.04); border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2  { color: var(--white); margin-bottom: 12px; }
.cta-banner p   { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 28px; }
.cta-banner .section-label { margin-bottom: 14px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── About Page ────────────────────────────────────────────── */
.about-hero { padding: 80px 0; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-hero-content h1 { margin: 10px 0 16px; }
.about-stats { display: flex; align-items: center; gap: 24px; margin: 28px 0; flex-wrap: wrap; }
.about-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--green-dark); font-weight: 700; }
.about-stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.about-stat-divider { width: 1px; height: 40px; background: var(--border); }
.about-trust-pills { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; }
.check-green { color: var(--green-mid); font-weight: 700; }
.about-hero-img, .about-photo-placeholder {
  border-radius: var(--radius-lg); 
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  
  /* Here are the updated dimensions! */
  height: 646px; 
  max-width: 539px; 
  width: 100%;
  margin: 0 auto; /* This keeps it centered if your grid column is wider than 539px */
  
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; }

/* Mission */
.mission-section { background: var(--off-white); padding: 80px 0; }
.mission-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.mission-inner h2 { margin: 10px 0 16px; }
.mission-inner p  { margin-bottom: 14px; }
.values-list { margin-top: 12px; }
.values-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: .93rem; font-weight: 500;
}
.values-list li::before { content: "›"; color: var(--green-mid); font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }

/* Team */
.team-section { background: var(--dark-bg); padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { border-radius: 16px; overflow: hidden; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); }
.team-photo {
  height: 240px; background: linear-gradient(135deg, #1a3d22, #2e7d32);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.team-img   { width: 100%; height: 100%; object-fit: cover; }
.team-emoji { font-size: 4rem; }
.team-info  {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-top: none; padding: 16px 18px;
}
.team-info h4   { color: var(--white); margin-bottom: 4px; font-size: .95rem; }
.team-info span { color: var(--lime); font-size: .78rem; }

/* ── Pricing Page ──────────────────────────────────────────── */
.pricing-hero { padding: 60px 0 40px; }
.pricing-hero-sub { max-width: 600px; margin: 12px auto 28px; font-size: 1.05rem; }
.what-affects { padding: 60px 0; }
.affects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.affects-grid h2 { margin: 10px 0 14px; }
.affects-list { margin-top: 14px; }
.affects-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .92rem;
}
.affects-list li::before { content: "⊕"; color: var(--green-mid); font-size: 1rem; flex-shrink: 0; }
.affects-table-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); }
.affects-table-wrap h3 { margin-bottom: 10px; }
.affects-table-wrap > p { margin-bottom: 16px; }
.pricing-table-simple { width: 100%; border-collapse: collapse; }
.pricing-table-simple th { background: var(--green-dark); color: var(--white); padding: 11px 14px; text-align: left; font-size: .88rem; }
.pricing-table-simple td { padding: 11px 14px; border-bottom: 1px solid var(--border); font-size: .88rem; }
.pricing-table-simple tr:nth-child(even) td { background: var(--off-white); }

/* Pricing cards */
.pricing-cards-section { padding: 60px 0; }
.pricing-grid { align-items: start; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--transition); position: relative;
}
.pricing-card.featured { border-color: var(--green-mid); box-shadow: 0 0 0 4px rgba(46,125,50,.08); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-mid); color: var(--white);
  padding: 4px 16px; border-radius: 50px; font-size: .76rem; font-weight: 700; white-space: nowrap;
}
.pricing-card h3    { font-size: 1.3rem; margin-bottom: 6px; }
.pricing-card .tagline { color: var(--text-muted); font-size: .85rem; margin-bottom: 20px; }
.price-tag { font-family: var(--font-display); font-size: 2.1rem; color: var(--green-dark); font-weight: 700; margin-bottom: 22px; }
.price-tag span { font-size: .95rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: .87rem; color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: "✓"; color: var(--green-mid); font-weight: 700; flex-shrink: 0; }

/* ── Learning Center ───────────────────────────────────────── */
.learning-hero { padding: 60px 0 0; }
.learning-hero h1 { margin: 10px 0 12px; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; padding-bottom: 0; }
.filter-btn {
  padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--white); font-size: .85rem; font-weight: 500;
  transition: var(--transition); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.learning-articles { padding: 48px 0 80px; }
.article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.article-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: var(--transition); }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.article-thumb { height: 190px; overflow: hidden; background: linear-gradient(135deg,#e8f5e9,#c8e6c9); display: flex; align-items: center; justify-content: center; }
.article-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.article-thumb-placeholder { font-size: 3.5rem; }
.article-body { padding: 22px; }
.article-tag {
  display: inline-block; background: rgba(46,125,50,.1); color: var(--green-mid);
  padding: 3px 10px; border-radius: 50px; font-size: .74rem; font-weight: 600; margin-bottom: 10px; margin-right: 4px;
}
.article-body h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.4rem; margin-bottom: 8px; }
.article-body h3 a { color: var(--text-dark); transition: var(--transition); }
.article-body h3 a:hover { color: var(--green-mid); }
.article-body p  { font-size: 1.00rem; margin-bottom: 14px; }
.read-more { color: var(--green-mid); font-weight: 600; font-size: .87rem; display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.read-more:hover { gap: 8px; }

/* Article detail (single post) */
.article-detail { padding: 60px 0; }
.single-post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.article-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.article-date { font-size: .82rem; color: var(--text-muted); }
.article-featured-img { margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden; }
.article-hero-img { width: 100%; height: 420px; object-fit: cover; }
.article-content h2 { font-size: 1.8rem; margin: 36px 0 12px; }
.article-content h3 { font-size: 1.4rem; margin: 28px 0 10px; font-family: var(--font-body); font-weight: 700; }
.article-content p  { margin-bottom: 16px; color: #444; line-height: 1.8; font-size: 1.15rem; }
.article-content ul, .article-content ol { padding-left: 20px; margin-bottom: 20px; }
.article-content ul li, .article-content ol li { padding: 5px 0; color: #444; font-size: 1.1rem; line-height: 1.7; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content a { color: var(--green-mid); text-decoration: underline; }
.article-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-nav { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 16px; }
.article-nav-link { color: var(--green-mid); font-weight: 600; font-size: .88rem; transition: var(--transition); }
.article-nav-link:hover { text-decoration: underline; }
.blog-sidebar { position: sticky; top: 100px; }
.blog-sidebar .widget { margin-bottom: 32px; background: var(--off-white); border-radius: var(--radius); padding: 22px; }
.blog-sidebar .widget-title { font-family: var(--font-body); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; color: var(--text-dark); }

/* ── Contact / Book A Call ─────────────────────────────────── */
.contact-hero { padding: 60px 0 40px; }
.contact-hero h1 { margin: 10px 0 12px; }
.contact-section { padding: 60px 0 80px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 28px; }
.contact-info-list { margin-bottom: 28px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(46,125,50,.1); color: var(--green-mid);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: .88rem; margin: 0; color: var(--text-muted); transition: var(--transition); }
.contact-info-item a:hover { color: var(--green-mid); }
.contact-process-box { background: var(--off-white); border-radius: var(--radius); padding: 22px; }
.contact-process-box h4 { margin-bottom: 12px; }
.contact-process-step { font-size: .88rem; color: var(--text-muted); line-height: 2.2; }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .87rem; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: .93rem; color: var(--text-dark);
  transition: var(--transition); outline: none; background: var(--white);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(46,125,50,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .76rem; text-align: center; color: var(--text-muted); margin-top: 10px; }
.form-message { padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; font-size: .9rem; font-weight: 600; }
.form-message.success { background: rgba(46,125,50,.1); color: var(--green-mid); border: 1px solid rgba(46,125,50,.2); }
.form-message.error   { background: rgba(229,57,53,.08); color: #e53935; border: 1px solid rgba(229,57,53,.2); }

/* ── Blog / Archive Layouts ────────────────────────────────── */
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.pagination-wrap { margin-top: 40px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination-wrap .page-numbers {
  padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border);
  font-size: .88rem; font-weight: 600; transition: var(--transition); color: var(--text-dark);
}
.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--dark-bg); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-name { color: var(--white); font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.footer-logo-sub  { color: rgba(255,255,255,.45); font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }
.site-footer img  { max-height: 48px; width: auto; }
.footer-tagline { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0 0 18px; }
.footer-contact-list { margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: .87rem; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--lime); }
.footer-contact-icon { color: var(--lime); font-size: 1rem; }
.google-rating {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  padding: 8px 12px; border-radius: 8px; margin-top: 4px;
}
.google-rating strong { color: var(--white); font-size: .9rem; }
.google-rating .stars { color: #ffc107; font-size: .85rem; }
.google-rating span   { font-size: .74rem; color: rgba(255,255,255,.55); }
.footer-col h4 {
  color: var(--white); font-family: var(--font-body); font-weight: 700;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px;
}
.footer-col ul li, .footer-col li { margin-bottom: 8px; }
.footer-col a, .footer-nav-list a { font-size: .87rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-col a:hover, .footer-nav-list a:hover { color: var(--lime); }
.footer-col > p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-bottom { padding: 18px 0; background: rgba(0,0,0,.2); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Error 404 ─────────────────────────────────────────────── */
.error-404 .error-content { max-width: 500px; margin: 0 auto; }
.error-404 h1 { font-size: 6rem; color: var(--green-dark); line-height: 1; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* 1. Stack the main grids into 1 column and center the text */
  .hero-inner,
  .about-hero-inner,
  .why-inner,
  .mission-inner,
  .affects-grid,
  .contact-inner { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  
  /* 2. Center the Hero & About text/buttons cleanly */
  .hero-subtitle, .about-hero-content p { margin-left: auto; margin-right: auto; }
  .hero-btns, .hero-trust-badges, .about-trust-pills { justify-content: center; }
  
  /* 3. Trigger the Mobile Hamburger Menu earlier to prevent crowding */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* 4. Keep your existing grid rules */
  .hero-stat-card { display: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .grid-3, .team-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .steps-grid::before { display: none; }
  .single-post-layout,
  .blog-layout { grid-template-columns: 1fr; }
  .why-img, .about-hero-img { height: 320px; }
}
@media (max-width: 768px) {
  .grid-2, .testi-grid, .article-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-right: none; border-bottom: 1px solid var(--border); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .team-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 14px; }
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 580px; }
  section.section-pad { padding: 50px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 40px; }
}
@media (max-width: 480px) {
  .grid-3, .team-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-btns, .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn, .cta-btns .btn { text-align: center; }
  .affects-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .about-stats { gap: 16px; }
  .about-stat-divider { display: none; }
}

/* ── WP Admin Bar offset ───────────────────────────────────── */
.admin-bar .nav-wrap { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav-wrap { top: 46px; }
}

/* ── WP Core alignment classes ─────────────────────────────── */
.alignleft  { float: left;  margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .82rem; color: var(--text-muted); margin-top: 6px; }
/* Force Fluent Forms to use You Can Calculate Custom Theme Styles */
.fluentform .ff-el-form-control {
    width: 100% !important; 
    padding: 11px 14px !important;
    border: 1.5px solid var(--border) !important; 
    border-radius: 8px !important;
    font-family: var(--font-body) !important; 
    font-size: .93rem !important; 
    color: var(--text-dark) !important;
    transition: var(--transition) !important; 
    background: var(--white) !important;
    box-shadow: none !important;
}

/* Add the custom green glow when clicking a box */
.fluentform .ff-el-form-control:focus {
    border-color: var(--green-mid) !important; 
    box-shadow: 0 0 0 3px rgba(46,125,50,.1) !important;
}

/* Style the Fluent Forms Submit Button to match your green button */
.fluentform .ff-btn-submit {
    background: var(--green-dark) !important; 
    color: var(--white) !important; 
    border-radius: 50px !important;
    padding: 16px 36px !important; 
    font-size: 1rem !important;
    font-weight: 600 !important;
    width: 100% !important;
    border: none !important;
    transition: var(--transition) !important;
}

.fluentform .ff-btn-submit:hover {
    background: var(--green-mid) !important; 
    transform: translateY(-1px) !important;
}
