﻿/*
Theme Name: Blank Starter
Theme URI:  https://example.com/blank-starter
Author:      Your Name
Author URI:  https://example.com
Description: Minimal blank starter theme for building custom templates.
Version:     1.0.7
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank-starter
Tags:        custom-logo, flexible-header, accessibility-ready, custom-menu
#388E3C
*/

/* Basic theme styles - replace these with your own design */
:root {
  --max-width: 1200px;
  --accent: #388E3C;
  --text: #111;
  --muted: #666;
  --bg: #000;
  /* default black header background to match your target */
  --white: #fff;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  overflow-x: hidden;
  /* Prevent horizontal scroll on mobile */
  width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Site wrapper */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ================================================
   FLOATING PILL HEADER
   ================================================ */
.header-float-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 14px 24px 0;
  pointer-events: none;
  box-sizing: border-box;
}

.site-header {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: auto;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-sizing: border-box;
}

/* ----- Logo ----- */
.site-branding a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-branding img,
.site-branding .custom-logo {
  max-height: 42px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.site-branding a:hover img {
  opacity: 0.80;
}

.site-title {
  color: #111;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

/* ----- Nav (center, desktop) ----- */
.header-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu>li>a {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-menu>li>a:hover,
.header-menu>li.current-menu-item>a,
.header-menu>li.current_page_item>a {
  color: #111;
  background: rgba(0, 0, 0, 0.04);
}

.header-menu>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: #388E3C;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.header-menu>li>a:hover::after,
.header-menu>li.current-menu-item>a::after,
.header-menu>li.current_page_item>a::after {
  transform: translateX(-50%) scaleX(1);
}

/* ----- Submenu dropdown ----- */
.header-menu .menu-item-has-children {
  position: relative;
}

.header-menu .menu-item-has-children>a::before {
  content: '';
  display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 4px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.header-menu .menu-item-has-children.sub-open>a::before {
  transform: rotate(180deg);
}

.header-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header-menu .menu-item-has-children.sub-open>.sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-menu .sub-menu li {
  margin: 0;
  padding: 0;
}

.header-menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.header-menu .sub-menu a:hover {
  background: #f5f5f5;
  color: #388E3C;
  padding-left: 24px;
}

/* ----- Right Actions ----- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ----- Cart Button with Badge ----- */
.header-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #555;
  font-size: 19px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.header-cart-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #111;
}

.header-cart-count {
  position: absolute;
  top: 2px;
  right: 1px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #ddd;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
  pointer-events: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-cart-count.has-items {
  background: #388E3C;
  color: #fff;
  transform: scale(1.05);
}

/* ----- Log In link ----- */
.header-login-link {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-login-link:hover {
  color: #111;
  background: rgba(0, 0, 0, 0.04);
}

/* Sign Up Free button */
.header-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: #388E3C;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.header-signup-btn:hover {
  background: #2f7832;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(56, 142, 60, 0.3);
}

/* ----- User dropdown ----- */
.header-user-menu {
  position: relative;
}

.header-user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  padding: 5px 14px 5px 5px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  color: #333;
  transition: background 0.2s ease;
}

.header-user-trigger:hover {
  background: rgba(0, 0, 0, 0.07);
}

.header-user-trigger img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.header-user-name {
  font-size: 14px;
  font-weight: 500;
}

.header-user-chevron {
  font-size: 12px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.header-user-menu.is-open .header-user-chevron {
  transform: rotate(180deg);
}

.header-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #fff;
  border-radius: 14px;
  min-width: 200px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header-user-menu.is-open .header-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.header-user-dropdown a:hover {
  background: #f5f5f5;
  color: #388E3C;
}

.header-user-dropdown a i {
  font-size: 16px;
  opacity: 0.5;
}

.header-user-divider {
  height: 1px;
  background: #eee;
  margin: 6px 14px;
}

/* ----- Search Overlay ----- */
.header-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.header-search-overlay-inner {
  width: 90%;
  max-width: 640px;
  position: relative;
}

.header-search-overlay form {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.header-search-overlay input[type="search"] {
  flex: 1;
  padding: 20px 24px;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  color: #fff;
  font-family: inherit;
}

.header-search-overlay input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.header-search-overlay form button[type="submit"] {
  padding: 20px 24px;
  background: #388E3C;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.header-search-overlay form button[type="submit"]:hover {
  background: #2f7832;
}

.header-search-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.header-search-close:hover {
  color: #fff;
}

/* ----- Hamburger (mobile) ----- */
.header-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
  z-index: 9999;
}

.header-mobile-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.header-mobile-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-mobile-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.header-mobile-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Mobile Actions (Hidden on desktop) ----- */
.header-mobile-actions {
  display: none;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .header-mobile-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 9998;
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .header-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .header-menu>li>a {
    color: #333;
    padding: 14px 16px;
    font-size: 17px;
    border-radius: 12px;
    justify-content: space-between;
  }

  .header-menu>li>a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #111;
  }

  .header-menu>li>a::after {
    display: none;
  }

  .header-menu .sub-menu {
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 4px 0;
    margin-top: 4px;
  }

  .header-menu .sub-menu a {
    color: #666;
    padding: 10px 20px 10px 32px;
  }

  .header-menu .sub-menu a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #388E3C;
    padding-left: 36px;
  }

  .header-user-menu,
  .header-login-link,
  .header-signup-btn {
    display: none;
  }

  .header-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-login-link,
  .mobile-action-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-login-link:hover,
  .mobile-action-link:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #111;
  }

  .mobile-action-link.text-danger {
    color: #d32f2f;
  }

  .mobile-action-link.text-danger:hover {
    background: rgba(211, 47, 47, 0.08);
    color: #b71c1c;
  }

  .mobile-signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: #388E3C;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 8px;
  }

  .mobile-signup-btn:hover {
    background: #2f7832;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(56, 142, 60, 0.3);
  }
}

@media (max-width: 480px) {
  .header-float-wrap {
    padding: 8px 12px 0;
  }

  .header-inner {
    padding: 0 14px;
    height: 56px;
  }

  .site-branding img,
  .site-branding .custom-logo {
    max-height: 34px;
  }

  .site-header {
    border-radius: 40px;
  }
}

.btn-cta {
  background: #388E3C !important;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: 0.15s ease-in-out;
}

.btn-cta:hover {
  background: #2f7832 !important;
  /* slightly darker hover shade */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(56, 142, 60, 0.35);
}

/* Content area */
.site-main {
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 0 20px;
  box-sizing: border-box;
  flex: 1;
}

.entry {
  margin-bottom: 28px;
}

.entry-title {
  font-size: 24px;
  margin: 0 0 8px;
}

.entry-content p {
  color: var(--text);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: #111;
  color: #ddd;
  padding: 18px 20px;
}

.site-footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width:980px) {
  .primary-navigation {
    display: none;
  }

  /* assume you'll add a mobile menu later */
  .header-inner {
    padding: 10px 14px;
  }

  .site-branding .custom-logo-link img {
    max-height: 44px;
  }
}

/* ========================= */
/* HERO SECTION — SPLIT LAYOUT */
/* ========================= */

.hero-section {
  position: relative;
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 55%, #f8fff8 100%);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(56, 142, 60, 0.07);
  top: -120px;
  right: -100px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(56, 142, 60, 0.05);
  bottom: -80px;
  left: -80px;
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#388E3C22 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}

/* LEFT */
.hero-content {
  text-align: left !important;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  background: #388E3C;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  color: #0d1f0d;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -1.5px;
}

.hero-highlight {
  color: #388E3C;
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #a5d6a7, #388E3C);
  border-radius: 4px;
  opacity: 0.4;
}

.hero-title-sub {
  display: block;
  font-size: 30px;
  font-weight: 400;
  color: #555;
  letter-spacing: -0.5px;
  margin-top: 6px;
}

.hero-desc {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 30px;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #388E3C;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  box-shadow: 0 6px 24px rgba(56, 142, 60, 0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero-cta-primary:hover {
  background: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(56, 142, 60, 0.38);
  color: #fff;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: #388E3C;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid #388E3C;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero-cta-secondary:hover {
  background: #388E3C;
  color: #fff;
  transform: translateY(-2px);
}

.hero-ai-sparkle {
  font-style: normal;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #1b5e20;
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 12px;
  color: #777;
  font-weight: 500;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: #d4edda;
}

/* Search bar */
.hero-search {
  width: 100%;
  max-width: 520px;
}

.hero-search form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-search form:focus-within {
  border-color: #388E3C;
  box-shadow: 0 6px 28px rgba(56, 142, 60, 0.12);
}

.hero-search-icon {
  margin-left: 16px;
  color: #aaa;
  flex-shrink: 0;
}

.hero-input {
  flex: 1;
  padding: 15px 14px;
  border: none;
  background: none;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  color: #222;
}

.hero-input::placeholder {
  color: #bbb;
}

.hero-btn {
  padding: 0 22px;
  height: 50px;
  border: none;
  background: #388E3C;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hero-btn:hover {
  background: #2e7d32;
}

/* RIGHT VISUAL PANEL */
.hero-visual {
  position: relative;
  height: 460px;
}

.hero-card-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Main card */
.hero-card-main {
  top: 10px;
  left: 0;
  width: calc(100% - 20px);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 4s ease-in-out infinite;
}

.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon--excel {
  background: #217346;
}

.hero-card-icon--vba {
  background: #6a1b9a;
}

.hero-card-icon--pbi {
  background: #f2c811;
}

.hero-card-icon--auto {
  background: #0078d4;
}

.hero-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.hero-card-sub {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.hero-card-badge {
  margin-left: auto;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Small skill cards */
.hero-card-sm {
  width: 130px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
}

.hero-card-sm span {
  white-space: nowrap;
}

.hero-card-sm-1 {
  top: 110px;
  right: 0;
  animation: float 4.5s ease-in-out 0.5s infinite;
}

.hero-card-sm-2 {
  top: 200px;
  left: 10px;
  animation: float 5s ease-in-out 0.3s infinite;
}

.hero-card-sm-3 {
  top: 200px;
  right: 10px;
  animation: float 4.2s ease-in-out 0.8s infinite;
}

/* Progress card */
.hero-card-progress {
  bottom: 10px;
  left: 0;
  width: calc(100% - 20px);
  padding: 16px 20px;
  animation: float 5s ease-in-out 1s infinite;
}

.hero-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.hero-progress-pct {
  color: #388E3C;
  font-weight: 700;
}

.hero-progress-bar {
  background: #e8f5e9;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #388E3C, #66bb6a);
  border-radius: 999px;
}

.hero-progress-sub {
  font-size: 12px;
  color: #aaa;
}

/* Floating badges */
.hero-floating-badge {
  position: absolute;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.hero-badge-1 {
  top: 155px;
  left: -10px;
  animation: float 6s ease-in-out 0.2s infinite;
}

.hero-badge-2 {
  top: 300px;
  right: -10px;
  animation: float 5.5s ease-in-out 0.7s infinite;
}

/* Responsive Hero */
.hero-content {
  text-align: left;
  /* Explicitly left-aligned always */
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .hero-visual {
    display: none !important;
  }

  .hero-content {
    text-align: center !important;
  }

  .hero-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-search {
    max-width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 120px 16px 60px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero-title-sub {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stat-num {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 26px;
  }
}

/* ========================= */
/* HOME SHARED UTILITIES     */
/* ========================= */

.home-section {
  padding: 72px 20px;
  color: #111;
}

.home-section-white {
  background: #fff;
}

.home-section-grey {
  background: #f7f9f7;
}

.home-section-dark {
  background: #0d1f0d;
  color: #fff;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.home-sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.home-sec-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-sec-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}

.home-sec-tag--light {
  background: rgba(255, 255, 255, 0.15);
  color: #a5d6a7;
}

.home-sec-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #0d1f0d;
  line-height: 1.2;
}

.home-sec-accent {
  color: #388E3C;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-sec-more {
  color: #388E3C;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.home-sec-more:hover {
  color: #2e7d32;
}

/* ========================= */
/* SECTION GRID              */
/* ========================= */

.ffext-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}

.ffext-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ffext-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ========================= */
/* HCARD — Big Feature Card  */
/* ========================= */

.hcard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.10);
}

.hcard--file {
  background: #f7fdf7;
}

.home-section-grey .hcard {
  background: #fff;
}

.hcard-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.hcard-thumb {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.hcard-thumb--icon {
  background: linear-gradient(135deg, #f0fdf4, #e8f5e9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcard-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hcard-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  width: fit-content;
}

.hcard-badge--vba {
  background: #ede7f6;
  color: #6a1b9a;
}

.hcard-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.4;
}

.hcard-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 14px;
}

.hcard-readmore {
  color: #388E3C;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================= */
/* HLIST — Small Right List  */
/* ========================= */

.hlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hlist-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hlist-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.home-section-grey .hlist-item {
  background: #fff;
}

.hlist-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}

.hlist-thumb {
  width: 70px;
  height: 54px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.hlist-body {
  flex: 1;
  min-width: 0;
}

.hlist-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 5px;
}

.hlist-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.hlist-arrow {
  color: #ccc;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.hlist-link:hover .hlist-arrow {
  color: #388E3C;
  transform: translateX(3px);
}

/* ========================= */
/* HFEAT — Featured + Pills  */
/* ========================= */

.hfeat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.hfeat-feature {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.home-section-grey .hfeat-feature {
  background: #fff;
}

.hfeat-thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.hfeat-body {
  padding: 24px 24px 28px;
}

.hfeat-title {
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0 12px;
  line-height: 1.35;
}

.hfeat-title a {
  color: #0d1f0d;
  text-decoration: none;
  transition: color 0.2s;
}

.hfeat-title a:hover {
  color: #388E3C;
}

.hfeat-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
}

.hfeat-readmore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #388E3C;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.hfeat-readmore:hover {
  gap: 8px;
}

/* Pill cards grid */
.hfeat-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hpill-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hpill-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.home-section-grey .hpill-card {
  background: #fff;
}

.hpill-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  text-decoration: none;
  color: inherit;
}

.hpill-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.hpill-badge--tricks {
  background: #fff3e0;
  color: #e65100;
}

.hpill-badge--vba {
  background: #ede7f6;
  color: #6a1b9a;
}

.hpill-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================= */
/* TRAINING SECTION (DARK)   */
/* ========================= */

.training-section {
  background: #0d1f0d;
  color: #fff;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}



.training-headline {
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0 18px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -1px;
}

.training-headline-accent {
  background: linear-gradient(90deg, #66bb6a, #a5d6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.training-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.training-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.training-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.training-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #388E3C;
  color: #fff;
  font-style: normal;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.training-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-training-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: #388E3C;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  box-shadow: 0 6px 24px rgba(56, 142, 60, 0.3);
  transition: background 0.2s, transform 0.2s;
}

.btn-training-primary:hover {
  background: #2e7d32;
  transform: translateY(-2px);
  color: #fff;
}

.btn-training-ghost {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-training-ghost:hover {
  color: #fff;
}



.course-carousel-wrapper {
  position: relative;
}

.no-courses-fallback {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.no-courses-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.no-courses-fallback p {
  font-size: 16px;
  margin-bottom: 24px;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}

.carousel-prev,
.carousel-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ========================= */
/* CONTACT SECTION           */
/* ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 60px;
  align-items: start;
}

.contact-heading {
  font-size: 36px;
  font-weight: 800;
  margin: 12px 0 14px;
  color: #0d1f0d;
  line-height: 1.2;
}

.contact-intro {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: #e8f5e9;
  color: #388E3C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0 0 3px;
}

.contact-info-body p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.contact-info-body a {
  color: #388E3C;
  text-decoration: none;
}

.contact-info-body a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 36px;
  border: 1px solid #eee;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #0d1f0d;
}

.contact-form-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field input,
.contact-field textarea {
  padding: 13px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #222;
  background: #fafafa;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #388E3C;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.08);
  background: #fff;
}

.btn-contact-submit {
  background: #388E3C;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(56, 142, 60, 0.25);
  transition: background 0.2s, transform 0.2s;
}

.btn-contact-submit:hover {
  background: #2e7d32;
  transform: translateY(-1px);
}

/* ========================= */
/* NEWSLETTER SECTION        */
/* ========================= */

.home-newsletter {
  position: relative;
  background: linear-gradient(135deg, #1b5e20 0%, #388E3C 60%, #4caf50 100%);
  padding: 72px 20px;
  overflow: hidden;
  color: #fff;
}

.home-newsletter-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.home-newsletter-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-newsletter-text {
  flex: 1;
  min-width: 280px;
}

.home-newsletter-icon {
  display: block;
  font-size: 40px;
  margin-bottom: 14px;
}

.home-newsletter-text h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.25;
}

.home-newsletter-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.65;
  max-width: 440px;
}

.home-newsletter-form {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  width: 440px;
  max-width: 100%;
}

.home-newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  color: #222;
  background: #fff;
}

.home-newsletter-form input::placeholder {
  color: #aaa;
}

.home-newsletter-form button {
  padding: 0 26px;
  background: #0d1f0d;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  white-space: nowrap;
}

.home-newsletter-form button:hover {
  background: #1b3a1b;
}

/* ========================= */
/* HOME PAGE RESPONSIVE      */
/* ========================= */

@media (max-width: 1100px) {
  .ffext-grid {
    grid-template-columns: 1fr;
  }

  .hfeat-grid {
    grid-template-columns: 1fr;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .ffext-left {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 52px 16px;
  }

  .home-sec-title {
    font-size: 26px;
  }

  .training-headline {
    font-size: 32px;
  }

  .home-newsletter-inner {
    gap: 32px;
  }

  .home-newsletter-form {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .home-newsletter-form {
    flex-direction: column;
    border-radius: 12px;
    overflow: visible;
    gap: 10px;
  }

  .home-newsletter-form input,
  .home-newsletter-form button {
    border-radius: 10px;
    width: 100%;
    padding: 14px 20px;
  }

  .home-sec-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .training-grid {
    gap: 36px;
  }

  .training-headline {
    font-size: 26px;
  }
}




/* ===========================
   Fixed submenu / dropdown
   - removes default markers
   - places custom bullet correctly
   - prevents dropdown disappearing on hover
   Replace previous submenu rules with this
   =========================== */

/* ensure parent is positioned */
.navbar-nav .menu-item-has-children {
  position: relative;
}

/* dropdown card (centered under parent) */
.navbar-nav .menu-item-has-children>.sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  /* anchor directly below parent (no gap) */
  transform: translateX(-50%);
  min-width: 240px;
  max-width: 320px;
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: none;
  z-index: 1200;
  pointer-events: auto;
}

/* show dropdown when hovering parent OR dropdown itself (prevents flicker) */
@media (hover: hover) {

  .navbar-nav .menu-item-has-children:hover>.sub-menu,
  .navbar-nav .menu-item-has-children:focus-within>.sub-menu,
  .navbar-nav .menu-item-has-children>.sub-menu:hover {
    display: block;
  }
}

/* remove any native list markers and reset spacing */
.navbar-nav .sub-menu,
.navbar-nav .sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* submenu item styling */
.navbar-nav .sub-menu li {
  position: relative;
  padding: 10px 12px 10px 34px;
  /* left space for custom bullet */
  margin: 0;
}

/* custom ring bullet — vertically centered relative to line */
.navbar-nav .sub-menu li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #0b6b63;
  /* green ring */
  background: transparent;
  box-sizing: border-box;
}

/* submenu links */
.navbar-nav .sub-menu li a {
  color: #0b6b63;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.2;
  display: block;
}

/* hover states for submenu links */
.navbar-nav .sub-menu li a:hover,
.navbar-nav .sub-menu li a:focus {
  color: #138e73;
  text-decoration: underline;
}

/* nested submenu (if any) — keep inline inside card */
.navbar-nav .sub-menu .sub-menu {
  position: static;
  box-shadow: none;
  padding-left: 0;
}

/* MOBILE: keep collapse behaviour */
@media (max-width: 991px) {
  .navbar-nav .menu-item-has-children>.sub-menu {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    background: transparent;
    padding: 0 12px 10px;
    box-shadow: none;
    border: none;
    display: none;
    /* toggled by .open class via JS */
  }

  .navbar-nav .menu-item-has-children.open>.sub-menu {
    display: block;
  }

  .navbar-nav .sub-menu li {
    padding: 8px 12px;
  }

  .navbar-nav .sub-menu li::before {
    left: 8px;
    width: 6px;
    height: 6px;
    border-width: 2px;
  }
}

/* ===========================
   Fixed, consistent submenu CSS
   Replace previous submenu / menu-item-has-children rules with this.
   =========================== */

/* Ensure parent is positioned */
.navbar-nav .menu-item-has-children {
  position: relative;
}

/* Reset any native list markers for submenu(s) */
.navbar-nav .sub-menu,
.navbar-nav .sub-menu ul,
.navbar-nav .sub-menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* Dropdown card (anchored directly under parent; no gap) */
.navbar-nav .menu-item-has-children>.sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  /* anchors directly below the parent */
  transform: translateX(-50%) translateY(-6px);
  /* initial slight lift for animation */
  min-width: 240px;
  max-width: 320px;
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 8px 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1200;

  /* hide visually but keep in flow for :hover detection */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}

/* Show the dropdown when hovering parent OR when hovering the dropdown itself
   (prevents disappearing when moving the mouse from parent → submenu). */
@media (hover: hover) {

  .navbar-nav .menu-item-has-children:hover>.sub-menu,
  .navbar-nav .menu-item-has-children:focus-within>.sub-menu,
  .navbar-nav .menu-item-has-children>.sub-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    /* slide into place */
  }
}

/* Submenu items: spacing and left space for bullet */
.navbar-nav .sub-menu li {
  position: relative;
  padding: 10px 12px 10px 34px;
  /* space for custom bullet */
}

/* Custom hollow ring bullet */
.navbar-nav .sub-menu li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #0b6b63;
  /* green ring */
  background: transparent;
  box-sizing: border-box;
}

/* Link styles inside submenu */
.navbar-nav .sub-menu li a {
  display: block;
  color: #0b6b63;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.2;
}

/* Hover state for submenu links */
.navbar-nav .sub-menu li a:hover,
.navbar-nav .sub-menu li a:focus {
  color: #138e73;
  text-decoration: underline;
}

/* If you have multi-column mega submenus, keep them visible similarly */
.navbar-nav .menu-item-has-children>.sub-menu.mega {
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 920px;
  max-width: calc(100vw - 40px);
  padding: 20px;
}

@media (max-width: 991px) {

  /* Mobile: submenus are static in the flow and toggled by JS (.open) */
  .navbar-nav .menu-item-has-children>.sub-menu,
  .navbar-nav .menu-item-has-children>.sub-menu.mega {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    background: transparent;
    padding: 0 12px 12px;
    box-shadow: none;
    border: none;
    visibility: visible;
    /* allow JS toggle via .open */
    opacity: 1;
    pointer-events: auto;
    display: none;
    /* shown only when parent gets .open class via JS */
  }

  .navbar-nav .menu-item-has-children.open>.sub-menu {
    display: block;
  }

  .navbar-nav .sub-menu li {
    padding: 8px 12px;
  }

  .navbar-nav .sub-menu li::before {
    left: 8px;
    width: 6px;
    height: 6px;
    border-width: 2px;
  }
}

/* small accessibility note: ensure submenu links are focusable */
.navbar-nav .sub-menu a {
  outline: none;
}

.navbar-nav .menu-item-has-children.hover-open>.sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ------------------------------ */
/* Excel Functions section layout */
/* ------------------------------ */
.functions-section {
  padding: 72px 20px;
  background: #fff;
  color: #111;
}

.functions-section .fs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.fs-heading-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fs-dots {
  width: 44px;
  height: 44px;
  background-image: radial-gradient(#cfe8f5 2px, transparent 2px);
  background-size: 8px 8px;
  border-radius: 6px;
}

.fs-title {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
}

.fs-accent {
  color: #388E3C;
  text-decoration: underline;
  margin-left: 6px;
}

.fs-more a {
  color: #0b6b63;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

/* grid: left featured + right two-column listing */
.fs-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* featured (left) */
.fs-feature {
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.fs-feature-title {
  font-size: 40px;
  line-height: 1.08;
  margin: 10px 0 18px;
  font-weight: 800;
  color: #000;
}

.fs-feature-title a {
  color: inherit;
  text-decoration: none;
}

.fs-feature-excerpt {
  color: #444;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 18px;
}

.fs-readmore {
  color: #388E3C;
  font-weight: 700;
  text-decoration: none;
}

/* right column: grid of plain text cards (no images) */
.fs-right {
  padding-left: 40px;
}

.fs-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fs-card {
  border-left: none;
  padding: 0;
}

.fs-card-link {
  display: block;
  padding: 20px 18px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.fs-card-link:hover {
  background: rgba(56, 142, 60, 0.04);
  border-left-color: #388E3C;
}

.fs-badge {
  display: inline-block;
  background: #e6f5f3;
  color: #0b6b63;
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}

.fs-card-title {
  font-size: 20px;
  margin: 6px 0 0;
  font-weight: 700;
  color: #000;
}

/* single-column fallback for small screens */
@media (max-width: 1000px) {
  .fs-grid {
    grid-template-columns: 1fr;
  }

  .fs-feature {
    border-right: none;
    padding-right: 0;
  }

  .fs-right {
    padding-left: 0;
    margin-top: 32px;
  }

  .fs-right-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fs-right-grid {
    grid-template-columns: 1fr;
  }

  .fs-feature-title {
    font-size: 28px;
  }

  .fs-feature-excerpt {
    font-size: 16px;
  }
}

/* ------------------------------ */
/* Working Files - Featured (extended) */
/* two large left, three small right */
/* Accent color: #388E3C */
/* ------------------------------ */

.working-files-extended {
  padding: 72px 20px;
  background: #fff;
  color: #111;
}

.wfext-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.wfext-heading-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wfext-dots {
  width: 44px;
  height: 44px;
  background-image: radial-gradient(#dbeedd 2px, transparent 2px);
  background-size: 8px 8px;
  border-radius: 6px;
}

.wfext-title {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
}

.wfext-accent {
  color: #388E3C;
  text-decoration: underline;
  margin-left: 6px;
}

.wfext-more a {
  color: #388E3C;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}

/* Grid */
.wfext-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}

/* LEFT: two big side-by-side */
.wfext-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.wfext-feature {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}

.wfext-feature-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.wfext-feature-body {
  padding: 6px 0;
}

.wfext-badge {
  display: inline-block;
  background: #eaf6ec;
  color: #388E3C;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.wfext-feature-title {
  font-size: 26px;
  margin: 6px 0 12px;
  font-weight: 700;
  color: #000;
}

.wfext-feature-excerpt {
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

.wfext-readmore {
  color: #388E3C;
  font-weight: 600;
}

/* RIGHT: three stacked small cards */
.wfext-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wfext-small-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wfext-small-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.wfext-small-link {
  display: block;
  padding: 14px;
  text-decoration: none;
  color: inherit;
}

.wfext-small-body {
  width: 100%;
}

.wfext-badge-small {
  display: inline-block;
  background: #eaf6ec;
  color: #388E3C;
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
}

.wfext-small-title {
  font-size: 18px;
  margin: 6px 0 0;
  font-weight: 700;
  color: #000;
}

/* Responsive */
@media (max-width: 1000px) {
  .wfext-grid {
    grid-template-columns: 1fr;
  }

  .wfext-left {
    grid-template-columns: 1fr;
  }

  .wfext-right {
    flex-direction: column;
    gap: 12px;
  }

  .wfext-small-card {
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .wfext-small-card {
    min-width: 220px;
  }

  .wfext-title {
    font-size: 24px;
  }

  .wfext-feature-title {
    font-size: 22px;
  }
}

/* ------------------------------ */
/* Excel Tricks section layout    */
/* same structure as Functions, no images */
/* ------------------------------ */
.tricks-section {
  padding: 72px 20px;
  background: #fff;
  color: #111;
}

.tricks-section .ts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.ts-heading-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ts-dots {
  width: 44px;
  height: 44px;
  background-image: radial-gradient(#cfe8f5 2px, transparent 2px);
  background-size: 8px 8px;
  border-radius: 6px;
}

.ts-title {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
}

.ts-accent {
  color: #388E3C;
  text-decoration: underline;
  margin-left: 6px;
}

/* change if you want different accent */
.ts-more a {
  color: #0b6b63;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

/* grid: left featured + right two-column listing */
.ts-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* featured (left) */
.ts-feature {
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.ts-feature-title {
  font-size: 40px;
  line-height: 1.08;
  margin: 10px 0 18px;
  font-weight: 800;
  color: #000;
}

.ts-feature-title a {
  color: inherit;
  text-decoration: none;
}

.ts-feature-excerpt {
  color: #444;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 18px;
}

.ts-readmore {
  color: #388E3C;
  font-weight: 700;
  text-decoration: none;
}

/* right column: grid of plain text cards (no images) */
.ts-right {
  padding-left: 40px;
}

.ts-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ts-card {
  border-left: none;
  padding: 0;
}

.ts-card-link {
  display: block;
  padding: 20px 18px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ts-card-link:hover {
  background: rgba(56, 142, 60, 0.04);
  border-left-color: #388E3C;
}

.ts-badge {
  display: inline-block;
  background: #e6f5f3;
  color: #0b6b63;
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}

.ts-card-title {
  font-size: 20px;
  margin: 6px 0 0;
  font-weight: 700;
  color: #000;
}

/* responsive fallbacks */
@media (max-width: 1000px) {
  .ts-grid {
    grid-template-columns: 1fr;
  }

  .ts-feature {
    border-right: none;
    padding-right: 0;
  }

  .ts-right {
    padding-left: 0;
    margin-top: 32px;
  }

  .ts-right-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ts-right-grid {
    grid-template-columns: 1fr;
  }

  .ts-feature-title {
    font-size: 28px;
  }

  .ts-feature-excerpt {
    font-size: 16px;
  }
}

/* ------------------------------ */
/* Excel VBA section layout       */
/* same structure as Functions/Tricks, no images */
/* ------------------------------ */
.vba-section {
  padding: 72px 20px;
  background: #fff;
  color: #111;
}

.vba-section .vbs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.vbs-heading-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vbs-dots {
  width: 44px;
  height: 44px;
  background-image: radial-gradient(#cfe8f5 2px, transparent 2px);
  background-size: 8px 8px;
  border-radius: 6px;
}

.vbs-title {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
}

.vbs-accent {
  color: #388E3C;
  text-decoration: underline;
  margin-left: 6px;
}

/* change color if desired */
.vbs-more a {
  color: #0b6b63;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

/* grid: left featured + right two-column listing */
.vbs-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* featured (left) */
.vbs-feature {
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.vbs-feature-title {
  font-size: 40px;
  line-height: 1.08;
  margin: 10px 0 18px;
  font-weight: 800;
  color: #000;
}

.vbs-feature-title a {
  color: inherit;
  text-decoration: none;
}

.vbs-feature-excerpt {
  color: #444;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 18px;
}

.vbs-readmore {
  color: #388E3C;
  font-weight: 700;
  text-decoration: none;
}

/* right column: grid of plain text cards (no images) */
.vbs-right {
  padding-left: 40px;
}

.vbs-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vbs-card {
  border-left: none;
  padding: 0;
}

.vbs-card-link {
  display: block;
  padding: 20px 18px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.vbs-card-link:hover {
  background: rgba(56, 142, 60, 0.04);
  border-left-color: #388E3C;
}

.vbs-badge {
  display: inline-block;
  background: #e6f5f3;
  color: #0b6b63;
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}

.vbs-card-title {
  font-size: 20px;
  margin: 6px 0 0;
  font-weight: 700;
  color: #000;
}

/* responsive fallbacks */
@media (max-width: 1000px) {
  .vbs-grid {
    grid-template-columns: 1fr;
  }

  .vbs-feature {
    border-right: none;
    padding-right: 0;
  }

  .vbs-right {
    padding-left: 0;
    margin-top: 32px;
  }

  .vbs-right-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vbs-right-grid {
    grid-template-columns: 1fr;
  }

  .vbs-feature-title {
    font-size: 28px;
  }

  .vbs-feature-excerpt {
    font-size: 16px;
  }
}

/* Alternating background utilities */
.section-white {
  background: #ffffff;
}

.section-grey {
  background: #f8f9fa;
}

/* Optional: add spacing if all sections share same padding */
.section-white,
.section-grey {
  padding: 72px 20px;
}

/* Global readmore & "More" link hover improvements */
.ffext-readmore,
.wfext-readmore,
.fs-readmore,
.ts-readmore,
.vbs-readmore {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.ffext-readmore:hover,
.wfext-readmore:hover,
.fs-readmore:hover,
.ts-readmore:hover,
.vbs-readmore:hover {
  transform: translateX(4px);
}

.ffext-more a,
.wfext-more a,
.fs-more a,
.ts-more a,
.vbs-more a {
  transition: color 0.2s ease;
}

.ffext-more a:hover,
.wfext-more a:hover,
.fs-more a:hover,
.ts-more a:hover,
.vbs-more a:hover {
  color: #388E3C;
  text-decoration: underline;
}

/* ------------------------------ */
/* Training / Courses Section     */
/* ------------------------------ */
.training-section {
  padding: 72px 20px;
  background: #ffffff;
  color: #111;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 36px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left side */
.training-left {
  padding-right: 20px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.kicker-dots {
  width: 44px;
  height: 44px;
  background-image: radial-gradient(#cfe8f5 2px, transparent 2px);
  background-size: 8px 8px;
  border-radius: 6px;
  display: inline-block;
}

.kicker-title {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
}

.kicker-accent {
  color: #388E3C;
  text-decoration: underline;
}

/* Headline & text */
.training-headline {
  font-size: 42px;
  line-height: 1.06;
  margin: 8px 0 18px;
  font-weight: 800;
  color: #000;
}

.training-desc p {
  color: #444;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
}

/* CTA */
.training-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.btn-cta {
  background: #388E3C !important;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-block;
}

.btn-cta:hover {
  background: #2f7832 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 142, 60, 0.14);
}

.training-free-link {
  color: #388E3C;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
}

.training-free-link:hover {
  text-decoration: underline;
}

/* Right side: course carousel wrapper */
.training-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.course-carousel-wrapper {
  width: 100%;
  max-width: 520px;
  position: relative;
}

/* Responsive adjustments for Training Section */
@media (max-width: 1000px) {
  .training-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .training-left {
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .training-ctas {
    align-items: center;
  }

  .training-right {
    max-width: 100%;
  }

  .course-carousel-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .training-headline {
    font-size: 32px;
  }

  .kicker-title {
    font-size: 24px;
  }

  .training-desc p {
    font-size: 16px;
  }
}

/* Fallback & tutor output helpers */
.course-carousel-wrapper .tutor-course-list,
.course-carousel-wrapper .tutor-course-carousel,
.course-carousel-wrapper .tutor-single-course,
.course-carousel-wrapper .tutor-course-grid {
  width: 100%;
  box-sizing: border-box;
}

/* small visual polish for fallback */
.course-carousel-wrapper .no-courses-fallback {
  padding: 28px;
  background: #f7f7f7;
  border-radius: 8px;
  text-align: center;
}

.course-carousel-wrapper .no-courses-fallback a {
  color: #388E3C;
  font-weight: 700;
  text-decoration: none;
}

/* ------------------------------ */
/* Carousel (fixed spacing) */
/* - no gap on track, slides get inner padding for spacing
/* ------------------------------ */
/* Carousel wrapper & controls */
.course-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.course-carousel-wrapper .carousel-controls {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  gap: 8px;
  z-index: 900;
}

.carousel-prev,
.carousel-next {
  background: #388E3C;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(56, 142, 60, 0.12);
  font-size: 18px;
  line-height: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
  transform: translateY(-2px);
}

/* Track and slide (no gap; slide padding used) */
.course-carousel-wrapper .carousel-track {
  display: flex;
  gap: 0;
  will-change: transform;
  transition: transform .35s cubic-bezier(.2, .9, .2, 1);
  padding: 0;
  box-sizing: border-box;
  align-items: stretch;
}

/* Each slide */
.course-carousel-wrapper .carousel-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 9px;
  display: flex;
  align-items: stretch;
}

/* Make sure slide content fills width */
.course-carousel-wrapper .carousel-slide>* {
  width: 100%;
  box-sizing: border-box;
}

/* Force tutor cards to fill the slide and remove internal column constraints */
.course-carousel-wrapper .tutor-course-item,
.course-carousel-wrapper .tutor-course,
.course-carousel-wrapper .tutor-course-card,
.course-carousel-wrapper .tutor-single-course,
.course-carousel-wrapper .tutor-course-list li,
.course-carousel-wrapper .tutor-course-grid>* {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* If Tutor inserts internal grid wrappers, make them normal block flow */
.course-carousel-wrapper .tutor-course-list,
.course-carousel-wrapper .tutor-course-grid,
.course-carousel-wrapper .tutor-course-list ul {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Responsive: fallback flex-basis for slides */
@media (min-width: 1100px) {
  .course-carousel-wrapper .carousel-slide {
    flex-basis: calc(100% / 3);
  }
}

/* 3 per view */
@media (min-width: 700px) and (max-width: 1099px) {
  .course-carousel-wrapper .carousel-slide {
    flex-basis: calc(100% / 2);
  }
}

/* 2 per view */
@media (max-width: 699px) {
  .course-carousel-wrapper .carousel-slide {
    flex-basis: 100%;
  }
}

/* 1 per view */

/* Fallback style for no-courses */
.course-carousel-wrapper .no-courses-fallback {
  padding: 28px;
  background: #f7f7f7;
  border-radius: 8px;
  text-align: center;
}

.course-carousel-wrapper .no-courses-fallback a {
  color: #388E3C;
  font-weight: 700;
  text-decoration: none;
}

/* ===================================== */
/* Shortcut CSS */
/* ===================================== */

.shortcuts-section {
  padding: 80px 4% !important;
  /* Full width approach with safe side padding */
}

.shortcuts-container {
  max-width: 1400px !important;
  width: 100% !important;
  min-width: 100%;
  margin: 0 auto;
}

.excel-shortcuts-page .shortcut-table {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #fff;
  width: 100%;
}

/* ===================================== */
/* WooCommerce Styling Overrides */
/* ===================================== */

/* --- Cart Hero: Break out of parent container to go full-width --- */
.excelman-cart-hero {
  margin-bottom: 0 !important;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-top: 140px !important;
  /* Clear the floating header */
  padding-bottom: 60px !important;
}

/* Hide default WooCommerce page title */
.woocommerce-cart .entry-header,
.woocommerce-cart .page-title,
.woocommerce-cart article .entry-title {
  display: none !important;
}

/* Make the entry-content on cart page full-width */
.woocommerce-cart .entry-content,
.woocommerce-cart article {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* --- Full-width cart content wrapper --- */
.excelman-cart-content {
  padding: 60px 4% 80px !important;
  background: #fff !important;
}

.excelman-cart-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 4% 80px;
}

/* --- Desktop 2-col layout: cart table + totals --- */
@media (min-width: 992px) {
  .woocommerce-cart .woocommerce {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100% !important;
    max-width: 100% !important;
  }

  .woocommerce-cart .woocommerce-cart-form {
    flex: 1 1 70%;
    width: 70% !important;
  }

  .woocommerce-cart .cart-collaterals {
    flex: 1 1 30%;
    width: 30% !important;
    float: none !important;
  }
}

/* --- Cart Table --- */
.woocommerce table.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  border-collapse: separate;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
  width: 100%;
  overflow: hidden;
}

.woocommerce table.shop_table th {
  background: #f7f7f7;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 16px 20px;
  border-bottom: 2px solid #eaeaea;
}

.woocommerce table.shop_table td {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
}

/* Product thumbnail in cart */
.woocommerce table.shop_table img {
  border-radius: 8px;
  max-width: 72px;
  height: auto;
}

/* Product name link */
.woocommerce table.shop_table td.product-name a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.woocommerce table.shop_table td.product-name a:hover {
  color: #388E3C;
}

/* Remove button */
.woocommerce table.shop_table td.product-remove a.remove {
  color: #ff3b30 !important;
  font-weight: bold;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: background .2s ease;
}

.woocommerce table.shop_table td.product-remove a.remove:hover {
  background: #fff0f0 !important;
}

/* Quantity input */
.woocommerce table.shop_table input.qty {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  width: 60px;
  text-align: center;
  font-size: 14px;
}

/* Cart Totals Box */
.woocommerce .cart-collaterals .cart_totals {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.woocommerce .cart-collaterals .cart_totals h2 {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.woocommerce .cart-collaterals .cart_totals table th {
  background: transparent;
  font-weight: 600;
  color: #555;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.woocommerce .cart-collaterals .cart_totals table td {
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

/* Primary Checkout Button */
.woocommerce .cart-collaterals .checkout-button,
.woocommerce a.checkout-button,
.woocommerce .wc-forward,
.woocommerce .cart-collaterals a.wc-forward {
  background: #388E3C !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  box-shadow: 0 6px 18px rgba(56, 142, 60, 0.25) !important;
  transition: all .25s ease !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.woocommerce .cart-collaterals .checkout-button:hover,
.woocommerce a.checkout-button:hover,
.woocommerce .wc-forward:hover,
.woocommerce .cart-collaterals a.wc-forward:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(56, 142, 60, 0.35) !important;
}

/* Update Cart & Apply Coupon Buttons */
.woocommerce button[name="update_cart"],
.woocommerce button[name="apply_coupon"] {
  background: #f1f1f1 !important;
  color: #333 !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  cursor: pointer;
  transition: all .2s ease !important;
}

.woocommerce button[name="update_cart"]:hover,
.woocommerce button[name="apply_coupon"]:hover {
  background: #e8e8e8 !important;
}

/* Coupon code input */
.woocommerce .coupon input#coupon_code {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
}

/* Empty cart notice */
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .cart-empty {
  background: #f8f9fa;
  border-left: 4px solid #388E3C;
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 15px;
  color: #333;
}

/* Return to shop button */
.woocommerce-cart .return-to-shop .button,
.woocommerce .return-to-shop a.button {
  background: #388E3C !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(56, 142, 60, 0.25) !important;
  transition: all .25s ease !important;
}

.woocommerce-cart .return-to-shop .button:hover,
.woocommerce .return-to-shop a.button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(56, 142, 60, 0.35) !important;
}

/* --- Responsive Cart Mobile --- */
@media (max-width: 768px) {
  .woocommerce table.cart .product-thumbnail {
    display: none;
  }

  .excelman-cart-content {
    padding: 40px 16px 60px !important;
  }

  .woocommerce .cart-collaterals .cart_totals {
    padding: 20px;
  }

  .woocommerce .cart-collaterals .checkout-button,
  .woocommerce a.checkout-button {
    padding: 14px 24px !important;
    font-size: 15px !important;
  }
}

/* ===================================== */
/* Modern Search Bar */
/* ===================================== */

.shortcuts-search {
  position: relative;
  max-width: 600px;
  margin-top: 24px;
}

.shortcuts-search input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border-radius: 40px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
  background: #fff;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shortcuts-search input:focus {
  outline: none;
  border-color: #388E3C;
  box-shadow: 0 0 0 4px rgba(56, 142, 60, 0.15);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
}

/* ===================================== */
/* Table Layout */
/* ===================================== */

.shortcut-header,
.shortcut-row {
  display: grid;
  grid-template-columns: 3fr 1.5fr 1.5fr;
  /* Stretches nicer on full width */
  padding: 20px 30px;
  /* Thicker horizontal padding for full width legibility */
  align-items: center;
}

.shortcut-header {
  background: #f7f7f7;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid #eaeaea;
}

/* ===================================== */
/* Rows */
/* ===================================== */

.shortcut-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  transition: background .15s ease;
}

.shortcut-row:hover {
  background: #f3f9f4;
  /* subtle green tint */
}

/* ===================================== */
/* Action Text */
/* ===================================== */

.shortcut-action {
  font-weight: 500;
  color: #111;
}

/* ===================================== */
/* Windows vs Mac Differentiation */
/* ===================================== */

.shortcut-win,
.shortcut-mac {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.shortcut-win span,
.shortcut-mac span {
  font-family: monospace;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  min-width: 32px;
  text-align: center;
}

/* Windows = Dark Keys */
.shortcut-win span {
  background: #111;
  color: #fff;
}

/* Mac = Light Keys */
.shortcut-mac span {
  background: #f1f1f1;
  border: 1px solid #ddd;
  color: #111;
}

/* Add small OS labels in header */

.shortcut-header div:nth-child(2)::after {
  content: " (Windows)";
  color: #388E3C;
  font-weight: 600;
}

.shortcut-header div:nth-child(3)::after {
  content: " (Mac)";
  color: #999;
  font-weight: 600;
}

/* ===================================== */
/* Category Title Styling */
/* ===================================== */

.category-title {
  font-size: 26px;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 5px solid #388E3C;
}

/* ===================================== */
/* Table Container Polish */
/* ===================================== */

.shortcut-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 48px;
}

/* ===================================== */
/* Responsive */
/* ===================================== */

@media(max-width:900px) {

  .shortcuts-section {
    padding: 60px 20px !important;
  }

  .shortcut-header {
    display: none;
    /* Hide header on mobile since stacked grid makes it redundant */
  }

  .shortcut-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Outline each row as a card on mobile */
    border-radius: 8px;
    margin-bottom: 12px;
  }

  /* Emulate header labels purely with pseudo elements for mobile clarity */
  .shortcut-win::before {
    content: "Windows:";
    font-size: 13px;
    color: #666;
    margin-right: 8px;
    align-self: center;
  }

  .shortcut-mac::before {
    content: "Mac:";
    font-size: 13px;
    color: #666;
    margin-right: 8px;
    align-self: center;
  }

  .shortcut-win span,
  .shortcut-mac span {
    display: inline-block;
  }

}

/* ============================= */
/* AI Assistant Button */
/* ============================= */

.hero-ai-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #388E3C, #2f7832);
  color: #fff;
  transition: all .25s ease;
  box-shadow: 0 6px 18px rgba(56, 142, 60, 0.25);
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.hero-ai-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}

.hero-ai-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(56, 142, 60, 0.35);
}

.hero-ai-btn:hover::before {
  opacity: 1;
}

.hero-ai-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(56, 142, 60, 0.2);
}

.ai-icon {
  font-size: 18px;
}

.ai-text {
  letter-spacing: .3px;
}

/* Fullscreen Chatbot */

.chatbot-fullscreen-body {
  margin: 0;
  background: #f4f6f8;
}

.chatbot-fullscreen-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.chatbot-fullscreen-wrapper>* {
  width: 100%;
  max-width: 1100px;
}

/* Remove unwanted spacing */
.chatbot-page-body {
  margin: 0;
  background: #f4f6f8;
}

/* Main center container */
.chatbot-page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Logo */
.chatbot-logo-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.chatbot-logo-wrapper img {
  max-height: 90px;
  width: auto;
}

/* Chatbot box width control */
.chatbot-box-wrapper {
  width: 100%;
  max-width: 900px;
}

/* ================================================
   ABOUT US PAGE
   ================================================ */

/* ----- HERO ----- */
.about-hero {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 180px 20px 100px;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(56, 142, 60, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(56, 142, 60, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  z-index: 1;
}

.about-hero-dots {
  position: absolute;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(rgba(56, 142, 60, 0.45) 2px, transparent 2px);
  background-size: 14px 14px;
  border-radius: 8px;
  pointer-events: none;
}

.about-hero-dots--tl {
  top: -30px;
  left: -40px;
}

.about-hero-dots--br {
  bottom: -30px;
  right: -40px;
}

.about-hero-badge {
  display: inline-block;
  background: rgba(56, 142, 60, 0.18);
  color: #7ddc7f;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 22px;
}

.about-hero-accent {
  color: #4CAF50;
  text-decoration: underline;
  text-decoration-color: rgba(76, 175, 80, 0.4);
  text-underline-offset: 6px;
}

.about-hero-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 900px) {
  .about-hero {
    padding: 140px 20px 80px;
  }

  .about-hero-title {
    font-size: 38px;
  }

  .about-hero-sub {
    font-size: 18px;
  }

  .about-hero-dots {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 120px 16px 60px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-sub {
    font-size: 16px;
  }
}

/* ----- MISSION / ABOUT BLOCK ----- */
.about-mission {
  padding: 88px 20px;
  background: #fff;
}

.about-mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.about-kicker-dots {
  width: 44px;
  height: 44px;
  background-image: radial-gradient(#cfe8f5 2px, transparent 2px);
  background-size: 8px 8px;
  border-radius: 6px;
  display: inline-block;
}

.about-kicker-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0;
  color: #111;
}

.about-kicker-accent {
  color: #388E3C;
  text-decoration: underline;
}

.about-mission-desc {
  color: #444;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-stats-row {
  display: flex;
  gap: 40px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #388E3C;
}

.about-stat-label {
  font-size: 14px;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mission visual card */
.about-mission-card {
  background: linear-gradient(145deg, #f0faf0, #e8f5e9);
  border: 1px solid rgba(56, 142, 60, 0.12);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(56, 142, 60, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(56, 142, 60, 0.14);
}

.about-mission-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: #388E3C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(56, 142, 60, 0.25);
}

.about-mission-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #111;
}

.about-mission-card p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 900px) {
  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-kicker-title {
    font-size: 28px;
  }

  .about-stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }
}

/* ----- VISION BLOCK ----- */
.about-vision {
  padding: 72px 20px;
  background: #f7f7f7;
}

.about-vision-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-vision-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(56, 142, 60, 0.1);
  color: #388E3C;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.about-vision-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 18px;
  color: #111;
}

.about-vision-text {
  color: #555;
  font-size: 19px;
  line-height: 1.8;
  margin: 0;
}

/* ----- VIDEO / NEEDS SPLIT ----- */
.about-video-needs {
  padding: 88px 20px;
  background: #fff;
}

.about-vn-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-video-card {
  position: relative;
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
  border-radius: 20px;
  padding-top: 62%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: radial-gradient(circle at center, rgba(56, 142, 60, 0.12) 0%, transparent 70%);
}

.about-play-btn {
  width: 80px;
  height: 80px;
  background: #388E3C;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 30px rgba(56, 142, 60, 0.35);
}

.about-play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(56, 142, 60, 0.5);
}

.about-video-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-needs-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 20px;
  color: #111;
}

.about-needs-accent {
  color: #388E3C;
  text-decoration: underline;
  text-decoration-color: rgba(56, 142, 60, 0.3);
  text-underline-offset: 6px;
}

.about-needs-desc {
  color: #555;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .about-vn-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-needs-title {
    font-size: 32px;
  }
}

/* ----- SERVICES CARDS ----- */
.about-services {
  padding: 88px 20px;
  background: #f7f7f7;
}

.about-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(56, 142, 60, 0.12);
}

.about-service-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #388E3C;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: background 0.25s ease;
}

.about-service-card:hover .about-service-icon {
  background: linear-gradient(135deg, #388E3C, #2f7832);
  color: #fff;
}

.about-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #111;
}

.about-service-card p {
  color: #666;
  line-height: 1.65;
  font-size: 15px;
  margin: 0 0 22px;
}

.about-service-link {
  color: #388E3C;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-service-link:hover {
  text-decoration: underline;
  gap: 10px;
}

@media (max-width: 900px) {
  .about-services-inner {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ----- TESTIMONIAL ----- */
.about-testimonial {
  padding: 96px 20px;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.about-testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(56, 142, 60, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.about-testimonial-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.about-testimonial-badge {
  display: inline-block;
  background: rgba(56, 142, 60, 0.18);
  color: #7ddc7f;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-testimonial-intro {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.about-testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 40px 40px;
  position: relative;
}

.about-testimonial-quote-icon {
  font-size: 48px;
  color: rgba(56, 142, 60, 0.5);
  margin-bottom: 12px;
  line-height: 1;
}

.about-testimonial-quote {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  margin: 0 0 32px;
  border: none;
  padding: 0;
}

.about-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-testimonial-avatar {
  width: 48px;
  height: 48px;
  background: #388E3C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.about-testimonial-meta {
  text-align: left;
}

.about-testimonial-meta strong {
  display: block;
  font-size: 16px;
  color: #fff;
}

.about-testimonial-meta span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 760px) {
  .about-testimonial-card {
    padding: 32px 20px;
  }

  .about-testimonial-quote {
    font-size: 16px;
  }
}

/* ----- NEWSLETTER ----- */
.about-newsletter {
  padding: 72px 20px;
  background: linear-gradient(135deg, #388E3C 0%, #2e7d32 50%, #1b5e20 100%);
  color: #fff;
}

.about-newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-newsletter-text h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.3;
}

.about-newsletter-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin: 0;
}

.about-newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.about-newsletter-form input[type="email"] {
  padding: 14px 20px;
  border: none;
  border-radius: 10px 0 0 10px;
  font-size: 15px;
  width: 280px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
}

.about-newsletter-form input[type="email"]::placeholder {
  color: #999;
}

.about-newsletter-form .btn-cta {
  border-radius: 0 10px 10px 0 !important;
  background: #111 !important;
  font-size: 15px;
  padding: 14px 24px;
  white-space: nowrap;
}

.about-newsletter-form .btn-cta:hover {
  background: #222 !important;
}

@media (max-width: 800px) {
  .about-newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .about-newsletter-form {
    width: 100%;
  }

  .about-newsletter-form input[type="email"] {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .about-newsletter-text h2 {
    font-size: 24px;
  }
}

/* ================================================
   CONTACT US PAGE
   ================================================ */

/* Yellow dot on hero title */
.contact-hero-dot {
  color: #f6e715;
  font-size: inherit;
}

/* ----- CONTACT MAIN: Info + Form Grid ----- */
.contact-main {
  padding: 88px 20px;
  background: #fff;
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}

/* --- Info Column --- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: #f7f7f7;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(56, 142, 60, 0.10);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #388E3C;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-info-card:hover .contact-info-icon {
  background: linear-gradient(135deg, #388E3C, #2f7832);
  color: #fff;
}

.contact-info-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111;
}

.contact-info-body p {
  margin: 0 0 4px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.contact-info-body a {
  color: #388E3C;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-body a:hover {
  text-decoration: underline;
}

/* --- Form Column --- */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #111;
}

.contact-form-subtitle {
  color: #888;
  font-size: 15px;
  margin: 0 0 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  margin-bottom: 16px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #388E3C;
  box-shadow: 0 0 0 4px rgba(56, 142, 60, 0.12);
  background: #fff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aaa;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  width: 100%;
  padding: 16px 24px !important;
  font-size: 16px !important;
  border-radius: 10px !important;
  cursor: pointer;
  text-align: center;
  display: block !important;
  margin-top: 8px;
}

@media (max-width: 960px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .contact-info-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 240px;
  }
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 32px 20px;
  }

  .contact-info-card {
    flex: 1 1 100%;
  }
}

/* ----- MAP SECTION ----- */
.contact-map {
  padding: 72px 20px 0;
  background: #f7f7f7;
}

.contact-map-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-map-header {
  margin-bottom: 32px;
}

.contact-map-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

@media (max-width: 760px) {
  .contact-map-embed iframe {
    min-height: 280px;
  }

  .contact-map {
    padding: 56px 16px 0;
  }
}

/* ================================================
   PRIVACY POLICY PAGE
   ================================================ */

/* smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

.privacy-content {
  padding: 80px 20px;
  background: #fff;
}

.privacy-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

/* ----- Sidebar TOC ----- */
.privacy-sidebar {
  position: sticky;
  top: 100px;
}

.privacy-toc {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.privacy-toc-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-toc-title i {
  color: #388E3C;
  font-size: 18px;
}

.privacy-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.privacy-toc-list li {
  margin-bottom: 4px;
}

.privacy-toc-list a {
  display: block;
  padding: 8px 12px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.privacy-toc-list a:hover {
  background: rgba(56, 142, 60, 0.08);
  color: #388E3C;
}

/* ----- Main Content Sections ----- */
.privacy-main {
  min-width: 0;
}

.privacy-section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #388E3C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: background 0.25s ease, color 0.25s ease;
}

.privacy-section:hover .privacy-section-icon {
  background: linear-gradient(135deg, #388E3C, #2f7832);
  color: #fff;
}

.privacy-section h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 14px;
  color: #111;
  padding-left: 16px;
  border-left: 4px solid #388E3C;
}

.privacy-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section a {
  color: #388E3C;
  text-decoration: none;
  font-weight: 500;
}

.privacy-section a:hover {
  text-decoration: underline;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .privacy-content-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .privacy-sidebar {
    position: static;
  }

  .privacy-toc {
    display: flex;
    flex-direction: column;
  }

  .privacy-toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .privacy-toc-list li {
    margin-bottom: 0;
  }

  .privacy-toc-list a {
    padding: 6px 10px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .privacy-content {
    padding: 56px 16px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }

  .privacy-section p {
    font-size: 15px;
  }
}

/* ================================================
   FAQ PAGE
   ================================================ */

.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ----- Category Block ----- */
.faq-category {
  margin-bottom: 56px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.faq-category-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #388E3C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.faq-category-header h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  color: #111;
}

/* ----- Accordion ----- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #f7f7f7;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.faq-item.open {
  background: #fff;
  border-color: rgba(56, 142, 60, 0.2);
  box-shadow: 0 8px 28px rgba(56, 142, 60, 0.08);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #388E3C;
}

.faq-item.open .faq-question {
  color: #388E3C;
}

/* Plus / Minus icon */
.faq-icon {
  font-size: 18px;
  color: #888;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #388E3C;
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ----- CTA Banner ----- */
.faq-cta {
  padding: 72px 20px;
  background: #f7f7f7;
  text-align: center;
}

.faq-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.faq-cta-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(56, 142, 60, 0.1);
  color: #388E3C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.faq-cta h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #111;
}

.faq-cta p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ----- Responsive ----- */
@media (max-width: 760px) {
  .faq-section {
    padding: 56px 16px;
  }

  .faq-category-header h2 {
    font-size: 22px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-cta h2 {
    font-size: 24px;
  }
}

/* ================================================
   REFUND POLICY PAGE
   ================================================ */

.refund-section {
  padding: 80px 20px;
  background: #fff;
}

.refund-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ----- Summary Banner ----- */
.refund-summary-banner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 32px;
  background: linear-gradient(135deg, #f0faf0, #e8f5e9);
  border: 1px solid rgba(56, 142, 60, 0.12);
  border-radius: 20px;
  margin-bottom: 48px;
}

.refund-summary-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #388E3C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.2);
}

.refund-summary-text p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 10px;
}

.refund-summary-text p:last-child {
  margin-bottom: 0;
}

/* ----- Policy Cards Grid ----- */
.refund-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.refund-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.refund-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(56, 142, 60, 0.10);
}

.refund-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.refund-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #388E3C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.25s ease, color 0.25s ease;
}

.refund-card:hover .refund-card-icon {
  background: linear-gradient(135deg, #388E3C, #2f7832);
  color: #fff;
}

.refund-card-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.refund-card-body p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.refund-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #388E3C;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.refund-card-link:hover {
  text-decoration: underline;
}

/* ----- Denied Refunds ----- */
.refund-denied {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 40px 36px;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.refund-denied-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.refund-card-icon--warn {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2) !important;
  color: #e65100 !important;
}

.refund-denied-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.refund-denied-intro {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.refund-denied-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.refund-denied-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

.refund-denied-list li i {
  color: #d32f2f;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.refund-denied-footer {
  color: #777;
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

/* ----- No Qualify Notice ----- */
.refund-no-qualify {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: #fffde7;
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 14px;
  margin-bottom: 0;
}

.refund-no-qualify-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255, 193, 7, 0.2);
  color: #f9a825;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.refund-no-qualify h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111;
}

.refund-no-qualify p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ----- Responsive ----- */
@media (max-width: 760px) {
  .refund-section {
    padding: 56px 16px;
  }

  .refund-summary-banner {
    flex-direction: column;
    padding: 28px 20px;
  }

  .refund-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .refund-card {
    padding: 28px 20px;
  }

  .refund-denied {
    padding: 28px 20px;
  }

  .refund-no-qualify {
    flex-direction: column;
    padding: 20px;
  }
}

/* ================================================
   TERMS OF SERVICE — Definitions List
   ================================================ */

.tos-definitions-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tos-definitions-list li {
  padding: 14px 0 14px 18px;
  border-left: 3px solid #388E3C;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #555;
  font-size: 15px;
  line-height: 1.75;
  margin-left: 4px;
}

.tos-definitions-list li:last-child {
  border-bottom: none;
}

.tos-definitions-list li strong {
  color: #222;
}

.tos-definitions-list li a {
  color: #388E3C;
  text-decoration: none;
  font-weight: 500;
}

.tos-definitions-list li a:hover {
  text-decoration: underline;
}

/* ================================================
   PREMIUM FOOTER
   ================================================ */

.site-footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 0;
}

/* ----- Main Footer Grid ----- */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 48px;
}

/* Brand column */
.footer-logo-link img,
.footer-logo-link .custom-logo {
  max-height: 52px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #388E3C;
  color: #fff;
  transform: translateY(-3px);
}

/* Link columns */
.footer-col-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #388E3C;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #7ddc7f;
  padding-left: 4px;
}

/* Contact list */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px !important;
}

.footer-contact-list li i {
  color: #388E3C;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li span,
.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-list li a:hover {
  color: #7ddc7f;
  padding-left: 0;
}

/* ----- Bottom Bar ----- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  margin: 0;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  margin: 0;
}

.footer-heart {
  color: #e53935;
  font-size: 14px;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ========================= */
/* HOME PAGE HARD OVERRIDES  */
/* (Fix card visibility)     */
/* ========================= */

/* Fix hero visual cards stacking in flow */
.hero-visual {
  position: relative;
  height: 460px;
  overflow: visible;
}

.hero-card-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card {
  position: absolute !important;
  background: #fff !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* When hero collapses single-col (<=860px), hide visual completely */
@media (max-width: 860px) {
  .hero-visual {
    display: none !important;
  }
}

/* hcard full override */
.hcard {
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid #e8f0e8 !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07) !important;
  display: flex !important;
  flex-direction: column !important;
}

.hcard:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13) !important;
}

.hcard-link {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: inherit !important;
  height: 100% !important;
}

.hcard-thumb {
  width: 100% !important;
  height: 180px !important;
  background-size: cover !important;
  background-position: center !important;
  flex-shrink: 0 !important;
}

.hcard-thumb--icon {
  background: linear-gradient(135deg, #f0fdf4, #e8f5e9) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 140px !important;
}

.hcard-body {
  padding: 20px 20px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  background: #fff !important;
}

.hcard-badge {
  display: inline-block !important;
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  margin-bottom: 10px !important;
  width: fit-content !important;
}

.hcard-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #0d1f0d !important;
  margin: 0 0 8px !important;
  line-height: 1.4 !important;
}

.hcard-excerpt {
  font-size: 13px !important;
  color: #555 !important;
  line-height: 1.6 !important;
  flex: 1 !important;
  margin: 0 0 12px !important;
}

.hcard-readmore {
  color: #388E3C !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* hlist override */
.hlist-item {
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid #e8f0e8 !important;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06) !important;
  overflow: hidden !important;
  margin-bottom: 4px !important;
}

.hlist-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 16px !important;
  text-decoration: none !important;
  color: inherit !important;
}

.hlist-badge {
  display: inline-block !important;
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 3px 8px !important;
  border-radius: 999px !important;
  margin-bottom: 4px !important;
}

.hlist-title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #111 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.hlist-body {
  flex: 1 !important;
  min-width: 0 !important;
}

/* hfeat override */
.hfeat-feature {
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid #e8f0e8 !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07) !important;
  overflow: hidden !important;
}

.hfeat-body {
  padding: 24px 24px 28px !important;
  background: #fff !important;
}

.hfeat-title {
  font-size: 19px !important;
  font-weight: 700 !important;
  margin: 8px 0 12px !important;
  line-height: 1.35 !important;
}

.hfeat-title a {
  color: #0d1f0d !important;
  text-decoration: none !important;
}

.hfeat-title a:hover {
  color: #388E3C !important;
}

.hfeat-excerpt {
  font-size: 14px !important;
  color: #555 !important;
  line-height: 1.65 !important;
  margin-bottom: 16px !important;
}

/* hpill-card override */
.hpill-card {
  background: #ffffff !important;
  border-radius: 10px !important;
  border: 1px solid #e8f0e8 !important;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 2px !important;
}

.hpill-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  text-decoration: none !important;
  color: inherit !important;
}

.hpill-badge {
  display: inline-block !important;
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  padding: 3px 8px !important;
  border-radius: 999px !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.hpill-badge--tricks {
  background: #fff3e0 !important;
  color: #e65100 !important;
}

.hpill-badge--vba {
  background: #ede7f6 !important;
  color: #6a1b9a !important;
}

.hpill-title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #111 !important;
  flex: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Section header text color fix */
.home-sec-title {
  color: #0d1f0d !important;
}

.home-sec-title a.home-sec-accent {
  color: #388E3C !important;
}

.home-sec-more {
  color: #388E3C !important;
}

.home-sec-tag {
  color: #2e7d32 !important;
  background: #e8f5e9 !important;
}

/* Section background fixes */
.home-section {
  color: #111 !important;
}

.home-section-white {
  background: #ffffff !important;
}

.home-section-grey {
  background: #f4f7f4 !important;
}

/* Contact form - visible placeholder text */
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #999 !important;
  font-size: 14px !important;
}

.contact-field input,
.contact-field textarea {
  color: #222 !important;
  background: #fafafa !important;
  border: 1.5px solid #ddeedd !important;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #388E3C !important;
  background: #fff !important;
}

/* Newsletter form text */
.home-newsletter-form input::placeholder {
  color: #aaa !important;
}

.home-newsletter-form input {
  color: #222 !important;
}

/* ================================================================ */
/* HOMEPAGE ALIGNMENT FIXES — Hero + Sections                       */
/* ================================================================ */

/* ── Hero Section: right visual panel rebuild ─────────────────────
   The card-wrap is 440px wide (set by hero-inner grid).
   We re-anchor every absolutely-positioned card so they form a
   clean, balanced stacked composition without overflow or gaps.
──────────────────────────────────────────────────────────────────── */

/* Container must not clip the cards that animate slightly outside */
.hero-visual {
  position: relative !important;
  overflow: visible !important;
  height: 480px !important;
}

.hero-card-wrap {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

/* Main "Excel Mastery" card — top, full width across panel */
.hero-card-main {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  padding: 18px 22px !important;
}

/* "Data Analysis" floating badge — top-left area */
.hero-badge-1 {
  top: 90px !important;
  left: 10px !important;
  z-index: 3 !important;
}

/* "Excel VBA" small card — top-right */
.hero-card-sm-1 {
  top: 85px !important;
  right: 10px !important;
  left: auto !important;
  width: 150px !important;
  z-index: 3 !important;
}

/* "Power BI" small card — mid-left */
.hero-card-sm-2 {
  top: 185px !important;
  left: 10px !important;
  right: auto !important;
  width: 150px !important;
  z-index: 2 !important;
}

/* "Automation" small card — mid-right */
.hero-card-sm-3 {
  top: 185px !important;
  right: 10px !important;
  left: auto !important;
  width: 155px !important;
  z-index: 2 !important;
}

/* "Keyboard Shortcuts" badge — bottom-right */
.hero-badge-2 {
  bottom: 95px !important;
  right: 10px !important;
  left: auto !important;
  z-index: 3 !important;
}

/* Progress card — bottom, spans most of width */
.hero-card-progress {
  bottom: 0 !important;
  left: 10px !important;
  right: 10px !important;
  width: auto !important;
  z-index: 3 !important;
}

/* All small cards: consistent sizing */
.hero-card-sm {
  width: 150px !important;
  padding: 13px 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* ── hfeat-grid: collapse to single col when right aside is empty ─ */
/* When the aside.hfeat-cards has no children (JS) it's hidden naturally;
   but the grid still leaves a blank column. Fix: if only featured exists,
   give it full width. We handle this with CSS :has() where supported,
   and also by making .hfeat-feature naturally expand. */

.hfeat-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

/* When the pill-cards aside has no visible children, collapse it */
.hfeat-cards:empty {
  display: none !important;
}

/* And let the feature card fill the grid */
.hfeat-grid:has(.hfeat-cards:empty) {
  grid-template-columns: 1fr !important;
}

/* Fallback for browsers without :has() — add max-width to featured card */
.hfeat-feature {
  min-width: 0 !important;
}

/* ── Working Files single card: fill full width ────────────────── */
.working-files-extended .ffext-left {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

.working-files-extended .ffext-right:empty {
  display: none !important;
}

.working-files-extended .ffext-grid:has(.ffext-right:empty) {
  grid-template-columns: 1fr !important;
}

/* ── Training section: fix feature list text alignment ───────────
   The training-features list showed only icon circles because
   the span text was invisible or zero-width. Force visibility.
──────────────────────────────────────────────────────────────────── */

.training-features li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.5 !important;
}

.training-features li span:last-child {
  flex: 1 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  display: block !important;
}

.training-feat-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  background: #388E3C !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
}

/* ── General section spacing cleanup ─────────────────────────────
   Some sections had irregular top/bottom padding.
──────────────────────────────────────────────────────────────────── */

.home-section {
  padding: 72px 24px !important;
}

/* Reduce hero section's bottom padding to tighten the gap */
.hero-section {
  padding-bottom: 60px !important;
}

/* ── hlist right-side items: ensure consistent height/display ──── */
.hlist-item {
  background: #fff !important;
  border-radius: 12px !important;
  border: 1px solid #e8f0e8 !important;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
}

.hlist {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.hlist-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* ── Responsive: hero visual on mid-size screens ──────────────── */
@media (max-width: 1100px) and (min-width: 861px) {
  .hero-inner {
    grid-template-columns: 1fr 380px !important;
    gap: 32px !important;
  }

  .hero-card-sm {
    width: 130px !important;
    font-size: 12px !important;
  }

  .hero-card-main {
    padding: 14px 16px !important;
  }

  .hero-card-progress {
    padding: 12px 16px !important;
  }
}

/* ── hfeat-grid responsive collapse ───────────────────────────── */
@media (max-width: 860px) {
  .hfeat-grid {
    grid-template-columns: 1fr !important;
  }

  .ffext-left {
    grid-template-columns: 1fr !important;
  }

  .ffext-grid {
    grid-template-columns: 1fr !important;
  }
}

/* hfeat-solo: used when there are no pill-cards (only featured article) */
.hfeat-grid.hfeat-solo {
  grid-template-columns: 1fr !important;
}

.hfeat-grid.hfeat-solo .hfeat-feature {
  max-width: 760px !important;
}

/* Training list text shown as inline text nodes next to icon */
.training-features li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

/* Fix training-feat-icon — was rendering as a wide flat ellipse */
.training-feat-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  min-height: 22px !important;
  border-radius: 50% !important;
  background: #388E3C !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  flex-shrink: 0 !important;
  line-height: 22px !important;
  text-align: center !important;
}