/* Shared header styles for the 2026 site redesign. */
:root {
	--new-green: #2e8b45;
	--new-green-dark: #206b37;
	--new-green-bright: #3aa14c;
	--new-charcoal: #1f2937;
	--new-line: #e6e8eb;
	--new-muted: #667085;
	--new-header-font: 'Montserrat', sans-serif;
	--new-body-font: 'Open Sans', sans-serif;
}

/* Avoid Bootstrap's blue click outline while preserving visible keyboard focus. */
:focus:not(:focus-visible) {
	outline: 0 !important;
	box-shadow: none !important;
}

:focus-visible {
	outline: 3px solid var(--new-green-bright) !important;
	outline-offset: 3px;
}

h1 {
	text-transform: unset;
}

.text-green {
	color: var(--new-green);
}
.text-light-green {
	color: #d7ffe3;
}

#new-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid var(--new-line);
	box-shadow: 0 2px 12px rgba(16, 24, 40, 0.06);
}

#new-site-header * { box-sizing: border-box; }
#new-site-header a { text-decoration: none; }
.new-header-inner { max-width: 1280px; height: 84px; margin: 0 auto; padding: 0 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.new-brand, #new-site-header .new-brand { display: inline-flex; flex-direction: column; justify-content: center; color: var(--new-charcoal) !important; line-height: 1; }
.new-wordmark { font-family: var(--new-header-font); font-size: 27px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.new-wordmark span { color: var(--new-green-bright); font-weight: 800; letter-spacing: 0; text-transform: none; }
.new-tagline { margin-top: 6px; color: var(--new-muted); font-family: var(--new-body-font); font-size: 10.5px; font-weight: 600; letter-spacing: 0.7px; text-transform: uppercase; white-space: nowrap; }
.new-main-nav > ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.new-main-nav li { position: relative; }
.new-main-nav a { display: inline-flex; align-items: center; gap: 6px; padding: 10px 13px; border-radius: 8px; color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 14.5px; font-weight: 600; transition: 0.15s; }
.new-main-nav > ul > li > a:hover, .new-main-nav > ul > li:hover > a { background: #f1f7f2; color: var(--new-green); }
.new-has-dropdown i { width: 7px; height: 7px; margin-top: -3px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
.new-has-dropdown > ul { position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px; margin: 0; padding: 8px; list-style: none; background: #fff; border: 1px solid var(--new-line); border-radius: 8px; box-shadow: 0 14px 34px rgba(16, 24, 40, 0.14); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: 0.16s; }
.new-has-dropdown:hover > ul, .new-has-dropdown:focus-within > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.new-has-dropdown > ul a { display: block; padding: 10px 13px; font-size: 14px; }
.new-has-dropdown > ul a:hover { background: #f1f7f2; color: var(--new-green); }
.new-header-actions { display: flex; align-items: center; gap: 18px; }
.new-phone-link, #new-site-header .new-phone-link { display: inline-flex; align-items: center; gap: 7px; color: var(--new-charcoal) !important; font-family: var(--new-header-font); font-size: 14.5px; font-weight: 700; white-space: nowrap; }
.new-phone-link span { color: var(--new-green); font-size: 16px; }
.new-phone-link:hover { color: var(--new-green); }
.new-contact-button { display: inline-flex; align-items: center; padding: 12px 24px; border-radius: 8px; background: var(--new-green); box-shadow: 0 4px 12px rgba(46, 139, 69, 0.28); color: #fff; font-family: var(--new-header-font); font-size: 14.5px; font-weight: 700; white-space: nowrap; transition: 0.15s; }
.new-contact-button:hover { background: var(--new-green-dark); color: #fff !important; transform: translateY(-2px); }
.new-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.new-menu-toggle span { width: 26px; height: 3px; border-radius: 2px; background: var(--new-charcoal); }
.new-mobile-menu { display: none; }

@media (max-width: 1100px) {
	.new-main-nav a { padding-right: 8px; padding-left: 8px; }
	.new-header-actions { gap: 12px; }
}

@media (max-width: 1000px) {
	.new-main-nav { display: none; }
	.new-header-actions { display: flex; margin-left: auto; }
	.new-header-actions .new-phone-link { display: none; }
	.new-header-actions .new-contact-button { padding: 10px 18px; }
	.new-menu-toggle { display: flex; }
	.new-mobile-menu { display: block; max-height: 0; overflow: hidden; background: #fff; border-top: 1px solid var(--new-line); box-shadow: 0 12px 24px rgba(16, 24, 40, 0.1); transition: max-height 0.28s ease; }
	.new-mobile-menu.is-open { max-height: 680px; }
	.new-mobile-menu ul { margin: 0; padding: 10px 22px 8px; list-style: none; }
	.new-mobile-menu li a { display: block; padding: 13px 6px; border-bottom: 1px solid var(--new-line); color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 16px; font-weight: 600; }
	.new-mobile-menu > div { display: flex; align-items: center; gap: 12px; padding: 14px 22px 20px; }
	.new-mobile-menu .new-contact-button { flex: 1; justify-content: center; }
}

@media (max-width: 560px) {
	.new-header-inner { height: 72px; padding: 0 18px; }
	.new-wordmark { font-size: 23px; }
	.new-tagline { font-size: 8.5px; }
}

#colophon.new-site-footer { margin-top: 0; padding: 0; border-top: 1px solid var(--new-line); background: #fff; box-shadow: 0 -2px 12px rgba(16, 24, 40, 0.04); color: #52606d; font-family: var(--new-body-font); }
.new-site-footer * { box-sizing: border-box; }
.new-footer-inner { max-width: 1280px; margin: 0 auto; padding: 52px 26px 0; }
.new-footer-grid { display: grid; grid-template-columns: 1.35fr 0.8fr 0.8fr 1.05fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid var(--new-line); }
.new-footer-column h2, .new-footer-column h3 { margin: 0 0 15px; color: #0f172a; font-family: var(--new-header-font); font-size: 13px; font-weight: 800; letter-spacing: 0.6px; line-height: 1.3; text-transform: uppercase; }
.new-footer-column h3 { margin-top: 24px; color: var(--new-green-dark); font-size: 11px; letter-spacing: 1px; }
.new-footer-column ul { margin: 0; padding: 0; list-style: none; }
.new-footer-column li { margin-bottom: 10px; }
.new-footer-column a { color: #52606d; font-size: 14px; font-weight: 600; line-height: 1.4; text-decoration: none; }
.new-footer-column a:hover { color: var(--new-green); }
.new-footer-brand { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.new-footer-wordmark { color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 27px; font-weight: 600; letter-spacing: 1.5px; line-height: 1; text-decoration: none; text-transform: uppercase; }
.new-footer-wordmark span { color: var(--new-green-bright); font-weight: 800; letter-spacing: 0; text-transform: none; }
.new-footer-wordmark small { display: block; margin-top: 6px; color: var(--new-muted); font-family: var(--new-body-font); font-size: 10.5px; font-weight: 600; letter-spacing: 0.7px; text-transform: uppercase; white-space: nowrap; }
.new-footer-brand p { margin: 18px 0; color: #52606d; font-size: 15.5px; line-height: 2.1; }
.new-footer-brand p a { color: var(--new-charcoal); font-weight: 700; text-decoration: none; }
.new-footer-contact { display: inline-flex; align-items: center; padding: 12px 24px; border-radius: 8px; background: var(--new-green); box-shadow: 0 4px 12px rgba(46, 139, 69, 0.28); color: #fff; font-family: var(--new-header-font); font-size: 14.5px; font-weight: 700; text-decoration: none; }
.new-footer-contact:hover { background: var(--new-green-dark); color: #fff; }
.new-footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.new-footer-socials a { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--new-line); border-radius: 8px; background: #f4f7f5; color: var(--new-charcoal); text-decoration: none; }
.new-footer-socials a:hover { border-color: var(--new-green); background: var(--new-green); color: #fff; }
.new-footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 22px 0 30px; color: var(--new-muted); font-size: 12.5px; }
.new-footer-bottom a { color: var(--new-muted); text-decoration: none; }
.new-footer-bottom a:hover { color: var(--new-green); }

@media (max-width: 900px) {
	.new-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
	.new-footer-brand { grid-column: 1 / -1; align-items: flex-start; text-align: left; }
}

@media (max-width: 560px) {
	.new-footer-inner { padding-right: 18px; padding-left: 18px; }
	.new-footer-grid { grid-template-columns: 1fr; }
	.new-footer-brand { grid-column: auto; }
	.new-footer-bottom { flex-direction: column; }
}

.new-homepage { color: #333; font-family: var(--new-body-font); line-height: 1.65; }
.new-home-wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding-right: 26px; padding-left: 26px; }
.new-home-hero { position: relative; display: flex; min-height: 620px; align-items: center; padding-bottom: 92px; background-position: 84% 22%; background-size: cover; color: #fff; }
.new-home-hero-copy { max-width: 760px; padding: 92px 0; }
.new-home-hero-copy > span, .new-home-intro > .new-home-wrap > i, .new-home-services > .new-home-wrap > i, .new-home-contact i { display: block; width: 52px; height: 5px; margin-bottom: 28px; border-radius: 3px; background: var(--new-green-bright); }
.new-home-hero h1, .new-homepage h2, .new-homepage h3 { color: inherit; font-family: var(--new-header-font); font-weight: 800; line-height: 1.15; }
.new-home-hero h1 { max-width: 760px; margin: 0 0 22px; font-size: 52px; }
.new-home-hero p { max-width: 540px; margin: 0 0 34px; color: #f0f4f2; font-size: 20px; }
.new-home-button { display: inline-flex; padding: 15px 28px; border: 0; border-radius: 8px; background: var(--new-green); box-shadow: 0 8px 22px rgba(46, 139, 69, .4); color: #fff; cursor: pointer; font-family: var(--new-header-font); font-size: 16px; font-weight: 700; text-decoration: none; }
.new-home-button:hover {
	background: var(--new-green-dark);
}
.new-video-modal { position: fixed; z-index: 10000; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(5,12,8,.88); }
.new-video-modal.is-open { display: flex; }
.new-video-modal-content { position: relative; width: min(920px, 100%); aspect-ratio: 16 / 9; background: #000; }
.new-video-modal iframe { width: 100%; height: 100%; border: 0; }
.new-video-modal-close { position: absolute; z-index: 1; top: -38px; right: 0; border: 0; background: transparent; color: #fff; cursor: pointer; font-size: 34px; line-height: 1; }

.new-store, .new-product { color: #333; font-family: var(--new-body-font); }
.new-store h1, .new-store h2, .new-store h3, .new-product h1 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.15;text-transform:unset; }
.new-store-hero, .new-product-hero { padding: 70px 0; background: #f4f7f5; text-align: center; }
.new-store-hero i, .new-store-category header i { display: block; width: 48px; height: 4px; margin: 0 auto 18px; border-radius: 3px; background: var(--new-green); }
.new-store-hero p, .new-product-hero p { margin: 0 0 10px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.new-store-hero h1, .new-product-hero h1 { max-width: 900px; margin: 0 auto 15px; color: #0f172a; font-size: 44px; }
.new-store-hero span, .new-product-hero span { display: block; max-width: 700px; margin: 0 auto; color: #475467; font-size: 17px; }
.new-store-catalog { padding: 72px 0; }
.new-store-category + .new-store-category { margin-top: 74px; }
.new-store-category header { margin-bottom: 38px; text-align: center; }
.new-store-category h2 { margin: 0 0 10px; color: #0f172a; font-size: 36px; }
.new-store-category header p { max-width: 660px; margin: 0 auto; color: #475467; }
.new-store-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.new-store-card { display: flex; flex-direction: column; border: 1px solid var(--new-line); border-radius: 8px; background: #fff; overflow: hidden; }
.new-store-image { display: flex; min-height: 250px; align-items: center; justify-content: center; padding: 26px; background: #f4f7f5; }
.new-store-image img { max-height: 250px; width: auto; }
.new-store-card > div { display: flex; height: 100%; flex-direction: column; padding: 23px; }
.new-store-card h3 { margin: 0 0 7px; color: #0f172a; font-size: 20px; }
.new-store-card h3 a { color: inherit; text-decoration: none; }
.new-store-subtitle { margin: 0 0 8px; color: var(--new-green-dark); font-weight: 700;line-height: 1.2; }
.new-store-specs { margin: 0 0 15px; color: #475467; font-size: 14px; }
.new-store-buy-select, .new-product-purchase select { width: 100%; margin: 0 0 13px; font-size: 14px !important; padding: 10px; border: 1px solid var(--new-line); border-radius: 6px; background: #fff; }
.new-store-actions { display: flex; gap: 10px; margin-top: auto; }
.new-store-actions a, .new-store-actions button { width: 100%; }
.new-store-buy-stripe.is-hidden, .new-store-buy-link.is-hidden, .new-product-buy-stripe.is-hidden, .new-product-buy-link.is-hidden { display: none; }
.new-store-actions a, .new-store-actions button, .new-product-purchase > a, .new-product-purchase > button { display: inline-flex; align-items: center; justify-content: center; padding: 11px 18px; border: 0; border-radius: 6px; background: var(--new-green); color: #fff; cursor: pointer; font-family: var(--new-header-font); font-size: 14px; font-weight: 700; text-decoration: none; }
.new-store-actions a:hover {background:var(--new-green-dark);color: #fff;}
.new-store-actions .new-store-details:hover { background:#eafaef;color: var(--new-green-dark); }
.new-store-actions .new-store-details { background: #f4f7f5; color: var(--new-green-dark); }
.new-store-security { padding: 35px 0; background: #1f7038; color: #fff; text-align: center; }
.new-store-security span { font-family: var(--new-header-font); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.new-store-security p { display: inline; margin: 0 20px; }
.new-store-security a { color: #fff; font-weight: 700; }
.new-store-security img { display: inline-block; max-height: 28px; width: auto; vertical-align: middle; }
.new-product-hero { padding: 54px 0; text-align: left; }
.new-product-hero > div { max-width: 1040px; }
.new-product-hero > div > a { display: inline-block; margin-bottom: 24px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 14px; font-weight: 700; text-decoration: none; }
.new-product-hero h1 { margin-left: 0; font-size: 42px; }
.new-product-hero span { margin-left: 0; }
.new-product-content { padding: 72px 0; }
.new-product-grid { display: grid; max-width: 1040px; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; }
.new-product-grid > article { color: #475467; font-size: 16px; line-height: 1.75; }
.new-product-grid > article h2, .new-product-grid > article h3 { color: #0f172a; font-family: var(--new-header-font); }
.new-product-grid > article > h1:first-child, .new-product-grid > article > h1:first-child + h2 { display: none; }
.new-product-purchase { padding: 24px; border: 1px solid var(--new-line); border-radius: 8px; background: #f4f7f5; }
.new-product-purchase > img { width: 100%; max-height: 350px; margin-bottom: 20px; object-fit: contain; }
.new-product-purchase > p { color: #475467; }
.new-product-purchase > strong { display: block; margin-bottom: 16px; color: #0f172a; font-family: var(--new-header-font); font-size: 26px; }
.new-product-purchase > a { width: 100%; }
@media (max-width: 800px) { .new-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .new-product-grid { grid-template-columns: 1fr; gap: 35px; } .new-product-purchase { max-width: 420px; } }
@media (max-width: 560px) { .new-store-hero, .new-product-hero, .new-store-catalog, .new-product-content { padding: 52px 0; } .new-store-hero h1, .new-product-hero h1 { font-size: 32px; } .new-store-category h2 { font-size: 29px; } .new-store-grid { grid-template-columns: 1fr; } .new-store-security p { display: block; margin: 8px 0 16px; } }
.new-home-logo-ticker { position: absolute; right: 0; bottom: 0; left: 0; overflow: hidden; padding: 30px 0; background: #1f7038; }
.new-home-logo-track { display: flex; width: max-content; animation: new-home-logo-scroll 48s linear infinite; }
.new-home-logo-ticker:hover .new-home-logo-track { animation-play-state: paused; }
.new-home-logo-track > div { display: flex; flex: 0 0 190px; align-items: center; justify-content: center; padding: 0 14px; }
.new-home-logo-track img { max-width: 150px; max-height: 32px; width: auto; height: auto; filter: brightness(0) invert(1); }
@keyframes new-home-logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.new-home-intro, .new-home-services { padding: 80px 0; text-align: center; }
.new-home-intro h2, .new-home-services h2 { max-width: 1040px; margin: 0 auto; color: #0f172a; font-size: 37px; }
.new-home-intro > .new-home-wrap > i, .new-home-services > .new-home-wrap > i { width: 48px; height: 4px; margin: 0 auto 20px; background: var(--new-green); }
.new-home-intro-copy { max-width: 1000px; margin: 22px auto 0; color: #475467; text-align: left; font-size: 17px; }
.new-home-intro-copy blockquote { margin: 28px 0 0; padding: 20px 26px; border-left: 4px solid var(--new-green); background: #f4f7f5; color: var(--new-green-dark); font-family: Georgia, serif; font-size: 22px; font-style: italic; }
.new-home-services { background: #f4f7f5; }
.new-home-section-lead { margin: 12px auto 52px; color: #475467; font-size: 17px; }
.new-home-service-grid { display: grid; max-width: 1120px; margin: 0 auto; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.new-home-service-grid article { padding: 0 16px; transition: transform .22s ease; }
.new-home-service-grid article:hover { transform: translateY(-7px); }
.new-home-service-icon { width: 106px; height: 106px; margin: 0 auto 20px; border-radius: 50%; background: var(--new-green); box-shadow: 0 10px 24px rgba(46, 139, 69, .28); }
.new-home-service-grid article:hover .new-home-service-icon {
    transform: scale(1.06);
    box-shadow: 0 16px 34px rgba(46, 139, 69, .42);
}
.new-home-service-icon {
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.new-home-microphone { background: var(--new-green) url('../../images/icons/speaking-home.png') center no-repeat; }
.new-home-users { background: var(--new-green) url('../../images/icons/consulting.png') center no-repeat; }
.new-home-book { background: var(--new-green) url('../../images/icons/products.png') center no-repeat; }
.new-home-service-grid h3 { margin: 0 0 10px; color: #0f172a; font-size: 20px; }
.new-home-service-grid p { margin: 0 auto; color: #4b5563; font-size: 15px; }
.new-home-service-grid a { display: inline-block; margin-top: 14px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 14px; font-weight: 700; text-decoration: none; }
.new-home-service-grid a:hover {
	color: var(--new-green);
}
.new-home-contact { padding: 78px 0; background: #1f7038; color: #fff; }
.new-home-contact-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 50px; align-items: center; }
.new-home-contact i { width: 48px; height: 4px; margin-bottom: 20px; background: #bff0cd; }
.new-home-contact h2 { margin: 0 0 12px; font-size: 37px; }
.new-home-contact p { max-width: 540px; margin: 0 0 24px; color: #eaf5ee; font-size: 16px; }
.new-home-contact-grid > img { width: 100%; border-radius: 8px; box-shadow: 0 18px 44px rgba(0,0,0,.32); }
.new-home-contact-form { display: grid; max-width: 560px; grid-template-columns: 1fr 1fr; gap: 12px; }
.new-home-contact-form label { display: block; margin-bottom: 4px; color: #fff; font-size: 13px; font-weight: 700; }
.new-home-contact-form input, .new-home-contact-form textarea { width: 100%; padding: 13px 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 8px; color: #333; font-family: var(--new-body-font); font-size: 15px; }
.new-home-contact-form textarea { min-height: 88px; resize: vertical; }
.new-home-full, .new-home-submit { grid-column: 1 / -1; }
.new-home-submit { justify-self: start; padding: 14px 32px; border: 0; border-radius: 8px; background: #fff; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 15px; font-weight: 700; cursor: pointer; }
.new-home-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.new-home-form-message { padding: 10px 14px; background: #fce8e8; color: #7b1f1f !important; font-size: 14px !important; }
.new-home-form-message.is-success { background: #e8f6eb; color: #164a26 !important; }

@media (max-width: 860px) { .new-home-contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .new-home-service-grid { grid-template-columns: 1fr; max-width: 440px; } }
@media (prefers-reduced-motion: reduce) { .new-home-logo-track { width: auto; flex-wrap: wrap; justify-content: center; animation: none; } }
@media (max-width: 560px) { .new-header-actions .new-contact-button { padding: 9px 13px; font-size: 13px; } .new-home-wrap { padding-right: 18px; padding-left: 18px; } .new-home-hero { min-height: 500px; } .new-home-hero-copy { padding: 70px 0; } .new-home-hero h1 { font-size: 36px; } .new-home-hero p { font-size: 16px; } .new-home-intro, .new-home-services, .new-home-contact { padding: 58px 0; } .new-home-intro h2, .new-home-services h2, .new-home-contact h2 { font-size: 29px; } .new-home-contact-form { grid-template-columns: 1fr; } .new-home-full, .new-home-submit { grid-column: auto; } .new-home-logo-track > div { flex-basis: 150px; } .new-home-logo-track img { max-width: 120px; max-height: 28px; } }

.new-accolades { color: #333; font-family: var(--new-body-font); }
.new-accolades h1, .new-accolades h2, .new-accolades h3 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.15; }
.new-accolades > section > .new-home-wrap > i, .new-ac-clients header > i { display: block; width: 48px; height: 4px; margin: 0 auto 20px; border-radius: 3px; background: var(--new-green); }
.new-ac-hero { padding: 42px 0 38px; background: #fff; text-align: center; }
.new-ac-hero > .new-home-wrap > p { margin: 0 0 14px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 12.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.new-ac-hero h1 { max-width: 650px; margin: 0 auto 16px; color: #0f172a; font-size: 45px; }
.new-ac-hero h1::first-line { color: #0f172a; }
.new-ac-hero > .new-home-wrap > div { max-width: 680px; margin: 0 auto; color: #475467; font-size: 19px; }
.new-ac-hero a, .new-ac-cta a { display: inline-flex; margin-top: 28px; padding: 14px 26px; border-radius: 8px; background: var(--new-green); box-shadow: 0 6px 18px rgba(46,139,69,.28); color: #fff; font-family: var(--new-header-font); font-size: 15px; font-weight: 700; text-decoration: none; }
.new-ac-testimonials { padding: 74px 0; background: #f4f7f5; }
.new-ac-testimonials h2, .new-ac-logos h2, .new-ac-clients h2 { margin: 0 auto 42px; color: #0f172a; font-size: 37px; text-align: center; }
.new-ac-featured { max-width: 760px; margin: 0 auto 48px; }
.new-ac-video { position: relative; display: flex; aspect-ratio: 16 / 9; align-items: center; justify-content: center; overflow: hidden; border-radius: 8px; background-position: center; background-size: cover; box-shadow: 0 16px 40px rgba(16,24,40,.2); }
.new-ac-video::after { position: absolute; inset: 0; background: rgba(8,18,12,.36); content: ''; }
.new-ac-video a, .new-ac-video .new-video-trigger { z-index: 1; display: flex; width: 72px; height: 72px; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: var(--new-green); box-shadow: 0 8px 26px rgba(46,139,69,.5); color: #fff; cursor: pointer; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; text-decoration: none; }
.new-ac-featured blockquote { max-width: 680px; margin: 24px auto 0; color: #3f4753; font-family: Georgia, serif; font-size: 18px; font-style: italic; text-align: center; }
.new-ac-featured cite { display: block; margin-top: 12px; color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 14.5px; font-style: normal; font-weight: 700; }
.new-ac-featured cite span { color: var(--new-muted); font-weight: 600; }
.new-ac-quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.new-ac-quote-grid article { padding: 26px 28px 24px; border: 1px solid var(--new-line); border-radius: 8px; background: #fff; }
.new-ac-quote-grid b { display: block; height: 22px; color: var(--new-green-bright); font-family: Georgia, serif; font-size: 48px; line-height: .6; }
.new-ac-quote-grid p { margin: 0 0 16px; color: #3f4753; font-size: 15.5px; font-style: italic; }
.new-ac-quote-grid strong { color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 13.5px; }
.new-ac-quote-grid strong span { display: block; margin-top: 2px; color: var(--new-muted); font-size: 12.5px; }
.new-ac-logos { padding: 74px 0 40px; text-align: center; }
.new-ac-logos h2 { max-width: 1040px; margin-bottom: 12px; }
.new-ac-logos > .new-home-wrap > p { max-width: 720px; margin: 0 auto 46px; color: #475467; font-size: 17px; }
.new-ac-logo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.new-ac-logo-grid > div { display: flex; flex: 0 0 calc((100% - 90px) / 6); height: 104px; align-items: center; justify-content: center; padding: 16px 18px; border: 1px solid var(--new-line); border-radius: 8px; background: #fff; box-shadow: 0 4px 14px rgba(16,24,40,.05); }
.new-ac-logo-grid img { max-width: 132px; max-height: 50px; width: auto; height: auto; }
.new-ac-clients { padding: 40px 0 78px; }
.new-ac-clients header { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.new-ac-clients header h2 { margin-bottom: 10px; }
.new-ac-clients header p { margin: 0; color: #475467; font-size: 16px; }
.new-ac-client-list { columns: 4; column-gap: 34px; }
.new-ac-client-list span { position: relative; display: block; break-inside: avoid; padding: 6px 0 6px 17px; color: #4b5563; font-size: 14px; line-height: 1.4; }
.new-ac-client-list span::before { position: absolute; top: 12px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--new-green-bright); content: ''; }
.new-ac-cta { padding: 60px 0; background: #1f7038; color: #fff; text-align: center; }
.new-ac-cta h2 { margin: 0 0 12px; color: #fff; font-size: 36px; }
.new-ac-cta p { max-width: 560px; margin: 0 auto; color: #eaf5ee; font-size: 16px; }
.new-ac-cta a { margin-top: 24px; background: #fff; box-shadow: none; color: var(--new-green-dark); }

@media (max-width: 920px) { .new-ac-quote-grid { grid-template-columns: repeat(2, 1fr); } .new-ac-client-list { columns: 3; } }
@media (max-width: 660px) { .new-ac-hero h1 { font-size: 32px; } .new-ac-testimonials h2, .new-ac-logos h2, .new-ac-clients h2, .new-ac-cta h2 { font-size: 29px; } .new-ac-quote-grid { grid-template-columns: 1fr; } .new-ac-logo-grid > div { flex-basis: calc((100% - 18px) / 2); } .new-ac-client-list { columns: 2; } }
@media (max-width: 480px) { .new-ac-client-list { columns: 1; } }

.new-insights { color: #333; font-family: var(--new-body-font); }
.new-insights h1, .new-insights h2 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.15; }
.new-insights-hero { padding: 66px 0 72px; background: #174b2a; color: #fff; }
.new-insights-hero i, .new-insights-cta i { display: block; width: 48px; height: 4px; margin-bottom: 24px; border-radius: 3px; background: var(--new-green-bright); }
.new-insights-hero p { margin: 0 0 12px; color: #bff0cd; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.new-insights-hero h1 { max-width: 780px; margin: 0 0 16px; color: #fff; font-size: 48px; }
.new-insights-hero h1::first-line { color: #fff; }
.new-insights-hero .new-home-wrap > div { max-width: 680px; color: #e5f1e9; font-size: 18px; line-height: 1.65; }
.new-insights-articles { padding: 72px 0 80px; background: #f4f7f5; }
.new-insights-layout { display: grid; grid-template-columns: minmax(0, 1fr) 284px; gap: 42px; align-items: start; }
.new-insights-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.new-insights-card { display: flex; min-height: 252px; flex-direction: column; padding: 26px; border: 1px solid var(--new-line); border-radius: 8px; background: #fff; box-shadow: 0 4px 16px rgba(16,24,40,.05); }
.new-insights-card-category { margin-bottom: 12px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 12px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.new-insights-card h2 { margin: 0 0 12px; color: var(--new-charcoal); font-size: 21px; }
.new-insights-card h2 a { color: inherit; text-decoration: none; }
.new-insights-card p { margin: 0 0 18px; color: #56606c; font-size: 15px; line-height: 1.6; }
.new-insights-read { margin-top: auto; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 14px; font-weight: 700; text-decoration: none; }
.new-insights-sidebar section { margin-bottom: 22px; padding: 24px; border: 1px solid var(--new-line); border-radius: 8px; background: #fff; }
.new-insights-sidebar { position: sticky; top: 24px; }
.new-insights-sidebar h2 { margin: 0 0 18px; color: var(--new-charcoal); font-size: 19px; }
.new-insights-sidebar .new-insights-reel { padding: 0 0 20px; overflow: hidden; background: #174b2a; color: #fff; }
.new-insights-reel img, .new-insights-reel iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; object-fit: cover; }
.new-insights-reel .new-insights-video-trigger { position: relative; display: flex; width: 100%; aspect-ratio: 16 / 9; align-items: center; justify-content: center; padding: 0; border: 0; border-radius: 0; background-color: #0f172a; background-position: center; background-size: cover; cursor: pointer; }
.new-insights-reel .new-insights-video-trigger::after { position: absolute; inset: 0; background: rgba(8,18,12,.35); content: ''; }
.new-insights-reel .new-insights-video-trigger span { z-index: 1; display: flex; width: 64px; height: 64px; align-items: center; justify-content: center; margin: 0; border-radius: 50%; background: var(--new-green); box-shadow: 0 8px 26px rgba(0,0,0,.32); color: #fff; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; }
.new-insights-sidebar .new-insights-reel h2 { margin: 18px 20px 5px; color: #fff; font-size: 17px; }
.new-insights-reel span { display: block; margin: 0 20px; color: #bff0cd; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; }
.new-insights-sidebar form { display: flex; }
.new-insights-sidebar input { min-width: 0; width: 100%; padding: 11px 12px; border: 1px solid #cfd8d3; border-radius: 5px 0 0 5px; color: var(--new-charcoal); font-family: var(--new-body-font); font-size: 14px; }
.new-insights-sidebar button { padding: 0 13px; border: 0; border-radius: 0 5px 5px 0; background: var(--new-green); color: #fff; font-family: var(--new-header-font); font-size: 12px; font-weight: 700; cursor: pointer; }
.new-insights-sidebar ul { margin: 0; padding: 0; list-style: none; }
.new-insights-sidebar li { border-top: 1px solid var(--new-line); }
.new-insights-sidebar li:first-child { border-top: 0; }
.new-insights-sidebar li a { display: inline-block; padding: 9px 0; color: #475467; font-size: 14px; text-decoration: none; }
.new-insights-sidebar li a:hover, .new-insights-card h2 a:hover, .new-insights-read:hover { color: var(--new-green); }
.new-insights .navigation.pagination { margin-top: 36px; text-align: center; }
.new-insights .page-numbers { display: inline-block; margin: 0 3px; padding: 8px 12px; border: 1px solid var(--new-line); border-radius: 5px; background: #fff; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 14px; text-decoration: none; }
.new-insights .page-numbers.current { border-color: var(--new-green); background: var(--new-green); color: #fff; }
.new-insights-cta { padding: 64px 0; background: #1f7038; color: #fff; text-align: center; }
.new-insights-cta i { margin: 0 auto 22px; background: #bff0cd; }
.new-insights-cta h2 { margin: 0 0 14px; color: #fff; font-size: 36px; }
.new-insights-cta p { max-width: 680px; margin: 0 auto; color: #eaf5ee; font-size: 16px; line-height: 1.65; }
.new-insights-cta a { display: inline-flex; margin-top: 25px; padding: 14px 25px; border-radius: 8px; background: #fff; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 15px; font-weight: 700; text-decoration: none; }

.new-insights-post { color: #333; font-family: var(--new-body-font); }
.new-insights-post h1, .new-insights-post h2, .new-insights-post h3 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.18; }
.new-insights-post-hero { padding: 48px 0 64px; background: #174b2a; color: #fff; }
.new-insights-post-back { display: inline-block; margin-bottom: 38px; color: #bff0cd; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; text-decoration: none; }
.new-insights-post-hero p { margin: 0 0 14px; color: #bff0cd; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.new-insights-post-hero h1 { max-width: 900px; margin: 0 0 20px; color: #fff; font-size: 48px; }
.new-insights-post-meta { color: #e5f1e9; font-size: 15px; }
.new-insights-post-meta span { display: inline-block; width: 4px; height: 4px; margin: 0 10px 3px; border-radius: 50%; background: #bff0cd; }
.new-insights-post-body { padding: 70px 0 84px; background: #f4f7f5; }
.new-insights-post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 284px; gap: 42px; align-items: start; }
.new-insights-post-article { min-width: 0; padding: 42px; border: 1px solid var(--new-line); border-radius: 8px; background: #fff; box-shadow: 0 4px 16px rgba(16,24,40,.05); }
.new-insights-post-featured { margin: -42px -42px 36px; overflow: hidden; border-radius: 8px 8px 0 0; }
.new-insights-post-featured img { display: block; width: 100%; height: auto; }
.new-insights-post-content { color: #475467; font-size: 17px; line-height: 1.75; }
.new-insights-post-content > :first-child { margin-top: 0; }
.new-insights-post-content h2 { margin: 42px 0 14px; color: var(--new-charcoal); font-size: 30px; }
.new-insights-post-content h3 { margin: 30px 0 12px; color: var(--new-charcoal); font-size: 23px; }
.new-insights-post-content a { color: var(--new-green-dark); font-weight: 700; }
.new-insights-post-content blockquote { margin: 32px 0; padding: 6px 0 6px 24px; border-left: 4px solid var(--new-green-bright); color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 22px; font-weight: 700; line-height: 1.45; }
.new-insights-post-content img { max-width: 100%; height: auto; }
.new-insights-post-footer { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--new-line); color: #667085; font-size: 14px; }
.new-insights-post-footer span { color: var(--new-charcoal); font-family: var(--new-header-font); font-weight: 700; }
.new-insights-post-footer a { color: var(--new-green-dark); text-decoration: none; }
.new-insights-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.new-insights-post-nav div:last-child { text-align: right; }
.new-insights-post-nav a { color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 14px; font-weight: 700; text-decoration: none; }
.new-insights-post-comments { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--new-line); }
.new-insights-post-comments .page-header { margin: 0 0 20px; border: 0; }
.new-insights-post-comments h2, .new-insights-post-comments h3 { color: var(--new-charcoal); font-size: 24px; }
.new-insights-post-comments textarea, .new-insights-post-comments input { max-width: 100%; border: 1px solid #cfd8d3; border-radius: 5px; }
.new-insights-post-comments #commentsubmit { padding: 11px 18px; border: 0; border-radius: 5px; background: var(--new-green); color: #fff; font-family: var(--new-header-font); font-weight: 700; }
.new-insights-post-sidebar { position: -webkit-sticky; position: sticky; top: 112px; align-self: start; height: fit-content; }
.new-insights-post .sharedaddy { margin: 34px 0 0; padding: 22px 0 0; border-top: 1px solid var(--new-line); }
.new-insights-post .sd-title { display: inline-block; margin: 0 16px 0 0; color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 13px; font-weight: 800; vertical-align: middle; }
.new-insights-post .sd-content { display: inline-block; vertical-align: middle; }
.new-insights-post .sd-content ul { display: inline-flex !important; gap: 8px; align-items: center; margin: 0 !important; padding: 0 !important; }
.new-insights-post .sd-content ul li { margin: 0 !important; }
.new-insights-post .sd-content .share-end { margin: 0 !important; }
.new-insights-post .sd-content .share-customize-link { display: none; }

@media (max-width: 860px) { .new-insights-layout { grid-template-columns: 1fr; } .new-insights-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .new-insights-sidebar section { margin: 0; } }
@media (max-width: 600px) { .new-insights-hero { padding: 54px 0; } .new-insights-hero h1 { font-size: 34px; } .new-insights-articles { padding: 48px 0; } .new-insights-grid, .new-insights-sidebar { grid-template-columns: 1fr; } .new-insights-card { min-height: 0; } .new-insights-cta { padding: 54px 0; } .new-insights-cta h2 { font-size: 29px; } }
@media (max-width: 860px) { .new-insights-post-layout { grid-template-columns: 1fr; } .new-insights-post-sidebar { position: static; height: auto; } }
@media (max-width: 600px) { .new-insights-post-hero { padding: 36px 0 50px; } .new-insights-post-hero h1 { font-size: 34px; } .new-insights-post-body { padding: 48px 0; } .new-insights-post-back { margin-bottom: 28px; } .new-insights-post-article { padding: 26px 22px; } .new-insights-post-featured { margin: -26px -22px 28px; } .new-insights-post-content { font-size: 16px; } .new-insights-post-content h2 { font-size: 27px; } .new-insights-post-nav { grid-template-columns: 1fr; } .new-insights-post-nav div:last-child { text-align: left; } }

.new-training { color: #333; font-family: var(--new-body-font); }
.new-training h1, .new-training h2, .new-training h3 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.15; }
.new-training-product { padding: 60px 0 68px; background: linear-gradient(180deg, #f4f7f5, #fff 78%); }
.new-training-grid { display: grid; grid-template-columns: 1.14fr .86fr; gap: 54px; align-items: center; }
.new-training-offer > p { margin: 0 0 12px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 12.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.new-training-offer h1 { margin: 0 0 8px; color: #0f172a; font-size: 42px; }
.new-training-offer > b { display: block; margin-bottom: 20px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; }
.new-training-description { max-width: 540px; color: #475467; font-size: 16.5px; line-height: 1.65; }
.new-training-price { display: flex; align-items: baseline; gap: 12px; margin: 22px 0 20px; }
.new-training-price strong { color: #0f172a; font-family: var(--new-header-font); font-size: 40px; line-height: 1; }
.new-training-price span { color: var(--new-muted); font-size: 14px; }
.new-training-offer ul { display: grid; gap: 11px; margin: 0 0 25px; padding: 0; list-style: none; }
.new-training-offer li { position: relative; padding-left: 30px; color: #3f4753; font-size: 15px; }
.new-training-offer li::before { position: absolute; top: 3px; left: 0; width: 19px; height: 19px; border-radius: 50%; background: var(--new-green); content: ''; }
.new-training-offer li::after { position: absolute; top: 8px; left: 6px; width: 7px; height: 4px; border-bottom: 2px solid #fff; border-left: 2px solid #fff; content: ''; transform: rotate(-45deg); }
.new-training-buy, .new-training-cta > div > a { display: inline-flex; padding: 16px 44px; border-radius: 8px; background: var(--new-green); box-shadow: 0 6px 18px rgba(46,139,69,.28); color: #fff; font-family: var(--new-header-font); font-size: 17px; font-weight: 700; text-decoration: none !important; }
.new-training-buy:hover { background: var(--new-green-dark);color:#fff; }
.new-training-offer small { display: block; margin-top: 10px; color: var(--new-muted); font-size: 13px; }
.new-training-device { max-width: 600px; margin: 0 auto; }
.new-training-device > div { position: relative; overflow: hidden; padding: 12px; border: 12px solid #15171c; border-radius: 16px; background: #111318; box-shadow: 0 34px 60px rgba(16,24,40,.38); }
.new-training-device img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.new-training-device span, .new-training-device strong, .new-training-device em { position: absolute; right: 34px; color: #fff; font-family: var(--new-header-font); text-align: right; }
.new-training-device span { top: 38px; color: #bff0cd; font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.new-training-device strong { top: 59px; font-size: 28px; }
.new-training-device em { top: 150px; font-size: 12px; font-style: normal; font-weight: 600; }
.new-training-benefit { padding: 30px 0; background: #0f172a; color: #fff; font-family: var(--new-header-font); font-size: 23px; font-weight: 700; text-align: center; }
.new-training-benefit em { color: var(--new-green-bright); }
.new-training-curriculum { padding: 74px 0 80px; text-align: center; }
.new-training-curriculum > div > i, .new-training-cta i { display: block; width: 48px; height: 4px; margin: 0 auto 18px; border-radius: 3px; background: var(--new-green); }
.new-training-curriculum h2 { margin: 0 0 12px; color: #0f172a; font-size: 37px; }
.new-training-curriculum > div > p { max-width: 720px; margin: 0 auto 48px; color: #475467; font-size: 17px; }
.new-training-curriculum > div > div { display: grid; max-width: 940px; margin: 0 auto; gap: 16px; text-align: left; }
.new-training-curriculum article { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 24px 28px; border: 1px solid var(--new-line); border-radius: 8px; background: #f4f7f5; }
.new-training-curriculum article > b { display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 8px; background: var(--new-green); color: #fff; font-family: var(--new-header-font); font-size: 19px; }
.new-training-curriculum article.is-bonus > b { background: #0f172a; }
.new-training-curriculum h3 { margin: 2px 0 7px; color: #0f172a; font-size: 18px; }
.new-training-curriculum h3 span { display: inline-block; margin-left: 8px; padding: 3px 9px; border-radius: 4px; background: var(--new-green-dark); color: #fff; font-size: 10px; letter-spacing: .6px; text-transform: uppercase; vertical-align: middle; }
.new-training-curriculum article p { margin: 0; color: #4b5563; font-size: 15px; }
.new-training-cta { padding: 60px 0; background: #1f7038; color: #fff; text-align: center; }
.new-training-cta i { background: #bff0cd; }
.new-training-cta h2 { margin: 0 0 10px; color: #fff; font-size: 36px; }
.new-training-cta p { margin: 0 0 22px; font-family: var(--new-header-font); font-size: 22px; font-weight: 800; }
.new-training-cta > div > a { background: #fff; box-shadow: 0 12px 26px rgba(0,0,0,.24); color: var(--new-green-dark); }
.new-training-cta > div > a:hover {background:#eafaef; color: var(--new-green-dark);}
.new-training-cta small { display: block; margin-top: 20px; color: #eaf5ee; font-size: 15px; }
.new-training-cta small a { color: #fff; font-weight: 700; }
@media (max-width: 900px) { .new-training-grid { grid-template-columns: 1fr; gap: 44px; } .new-training-device { max-width: 580px; } }
@media (max-width: 560px) { .new-training-product, .new-training-curriculum { padding: 52px 0; } .new-training-offer h1 { font-size: 32px; } .new-training-price { align-items: flex-start; flex-direction: column; } .new-training-benefit { font-size: 18px; } .new-training-curriculum h2, .new-training-cta h2 { font-size: 29px; } .new-training-curriculum article { gap: 15px; padding: 20px; } .new-training-device strong { font-size: 22px; } .new-training-device em { top: 112px; font-size: 10px; } }

.new-speaking { color: #333; font-family: var(--new-body-font); }
.new-speaking h1, .new-speaking h2, .new-speaking h3 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.15; }
.new-speaking-hero { display: flex; min-height: 590px; align-items: center; background-position: center; background-size: cover; color: #fff; }
.new-speaking-hero > div > div { max-width: 730px; padding: 80px 0; }
.new-speaking-hero i, .new-speaking-intro i, .new-speaking-programs > div > i, .new-speaking-testimonials i, .new-speaking-contact i { display: block; width: 48px; height: 4px; margin-bottom: 26px; border-radius: 3px; background: var(--new-green-bright); }
.new-speaking-hero h1 { margin: 0 0 20px; color: #fff; font-size: 52px; }
.new-speaking-hero p { max-width: 590px; margin: 0 0 30px; color: #f0f4f2; font-size: 19px; }
.new-speaking-hero a, .new-speaking-hero .new-video-trigger { display: inline-flex; padding: 14px 25px; border: 0; border-radius: 8px; background: var(--new-green); color: #fff; cursor: pointer; font-family: var(--new-header-font); font-size: 15px; font-weight: 700; text-decoration: none; }
.new-speaking-logos { overflow: hidden; padding: 27px 0; background: #1f7038; }
.new-speaking-logos > div { display: flex; width: max-content; animation: new-home-logo-scroll 48s linear infinite; }
.new-speaking-logos span { display: flex; width: 182px; height: 36px; align-items: center; justify-content: center; padding: 0 15px; }
.new-speaking-logos img { max-width: 145px; max-height: 32px; filter: brightness(0) invert(1); }
.new-planners-logos { overflow: hidden; padding: 27px 0; background: #1f7038; }
.new-planners-logos > div { display: flex; width: max-content; animation: new-home-logo-scroll 48s linear infinite; }
.new-planners-logos span { display: flex; width: 182px; height: 36px; align-items: center; justify-content: center; padding: 0 15px; }
.new-planners-logos img { max-width: 145px; max-height: 32px; filter: brightness(0) invert(1); }
.new-speaking-intro { padding: 78px 0; text-align: center; }
.new-speaking-intro > div { max-width: 900px; }
.new-speaking-intro i, .new-speaking-programs > div > i, .new-speaking-testimonials i, .new-speaking-contact i { margin-right: auto; margin-left: auto; background: var(--new-green); }
.new-speaking-intro h2, .new-speaking-programs h2, .new-speaking-testimonials h2 { margin: 0 auto 20px; color: #0f172a; font-size: 37px; }
.new-speaking-intro p { margin: 0 auto 16px; color: #475467; font-size: 16.5px; line-height: 1.7; }
.new-speaking-stats { display: flex; justify-content: center; gap: 62px; margin-top: 38px; }
.new-speaking-stats span { display: flex; flex-direction: column; color: var(--new-muted); font-family: var(--new-header-font); font-size: 13px; font-weight: 700; }
.new-speaking-stats b { color: var(--new-green); font-size: 35px; }
.new-speaking-programs { padding: 76px 0; background: #f4f7f5; text-align: center; }
.new-speaking-programs > div > p { max-width: 720px; margin: 0 auto 42px; color: #475467; font-size: 16.5px; }
.new-speaking-programs > div > div { display: grid; gap: 18px; text-align: left; }
.new-speaking-programs article { display: grid; grid-template-columns: .92fr 1.08fr; border: 1px solid var(--new-line); border-left: 5px solid var(--new-green); border-radius: 8px; background: #fff; box-shadow: 0 4px 14px rgba(16,24,40,.05); }
.new-speaking-programs article > section, .new-speaking-programs article > ul { padding: 28px 31px; }
.new-speaking-programs article > section { border-right: 1px solid var(--new-line); }
.new-speaking-programs article span { color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 11.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; }
.new-speaking-programs h3 { margin: 9px 0 17px; color: #0f172a; font-size: 21px; }
.new-speaking-programs a, .new-speaking-testimonials > div > a { color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 14px; font-weight: 700; text-decoration: none; }
.new-speaking-programs ul { display: grid; gap: 9px; margin: 0; list-style: none; }
.new-speaking-programs li { position: relative; padding-left: 25px; color: #475467; font-size: 14.5px; }
.new-speaking-programs li::before { position: absolute; top: 6px; left: 0; width: 12px; height: 7px; border-bottom: 2px solid var(--new-green); border-left: 2px solid var(--new-green); content: ''; transform: rotate(-45deg); }
.new-speaking-testimonials { padding: 76px 0; text-align: center; }
.new-speaking-testimonials > div > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; text-align: left; }
.new-speaking-testimonials article { padding: 26px 28px; border: 1px solid var(--new-line); border-radius: 8px; }
.new-speaking-testimonials article > b { display: block; height: 26px; color: var(--new-green-bright); font-family: Georgia, serif; font-size: 48px; line-height: .75; }
.new-speaking-testimonials article p { color: #3f4753; font-size: 15px; font-style: italic; }
.new-speaking-testimonials strong { color: #0f172a; font-family: var(--new-header-font); font-size: 14px; }
.new-speaking-testimonials strong span { display: block; margin-top: 3px; color: var(--new-muted); font-size: 12px; }
.new-speaking-testimonials > div > a { display: inline-block; margin-top: 28px; }
.new-speaking-contact { padding: 74px 0; background: #1f7038; color: #fff; text-align: center; }
.new-speaking-contact i { background: #bff0cd; }
.new-speaking-contact h2 { margin: 0 0 12px; color: #fff; font-size: 37px; }
.new-speaking-contact p { max-width: 620px; margin: 0 auto 24px; color: #eaf5ee; font-size: 16px; }
.new-speaking-contact p a { color: #fff; font-weight: 700; }
.new-speaking-contact form { max-width: 650px; margin: 0 auto; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.new-speaking-contact input, .new-speaking-contact textarea { width: 100%; padding: 13px 15px; border: 0; border-radius: 6px; color: #333; font-family: var(--new-body-font); font-size: 15px; }
.new-speaking-contact textarea { min-height: 100px; resize: vertical; }
.new-speaking-full { grid-column: 1 / -1; }
.new-speaking-contact button { justify-self: center; padding: 14px 30px; border: 0; border-radius: 7px; background: #fff; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 15px; font-weight: 700; cursor: pointer; }
@media (max-width: 700px) { .new-speaking-hero { min-height: 500px; } .new-speaking-hero h1 { font-size: 36px; } .new-speaking-stats { gap: 24px; } .new-speaking-programs article { grid-template-columns: 1fr; } .new-speaking-programs article > section { border-right: 0; border-bottom: 1px solid var(--new-line); } .new-speaking-testimonials > div > div { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .new-speaking-intro, .new-speaking-programs, .new-speaking-testimonials, .new-speaking-contact { padding: 55px 0; } .new-speaking-intro h2, .new-speaking-programs h2, .new-speaking-testimonials h2, .new-speaking-contact h2 { font-size: 29px; } .new-speaking-stats { gap: 15px; } .new-speaking-stats b { font-size: 27px; } .new-speaking-stats span { font-size: 11px; } .new-speaking-contact form { grid-template-columns: 1fr; } .new-speaking-full { grid-column: auto; } }

.new-about { color: #333; font-family: var(--new-body-font); }
.new-about h1, .new-about h2, .new-about h3 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.15; }
.new-about-hero { padding: 64px 0; background: #f4f7f5; }
.new-about-hero > div > div, .new-about-books > div > div, .new-about-speaking > div > div { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.new-about-hero > div > div {
	grid-template-columns: 2fr 1fr;
}
.new-about-hero section > p:first-child { margin: 0 0 12px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 12.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.new-about-hero h1 { margin: 0 0 20px; color: #0f172a; font-size: 45px; }
.new-about-hero section > div { margin-bottom: 15px; color: #334155; font-size: 19px; font-weight: 700; line-height: 1.55; }
.new-about-hero section > p:not(:first-child) { color: #475467; font-size: 16px; line-height: 1.7; }
.new-about-hero > div > div > img { width: 100%; border-radius: 8px; box-shadow: 0 16px 38px rgba(16,24,40,.16); }
.new-about-hero aside { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.new-about-hero aside img { max-width: 70px; max-height: 70px; object-fit: contain; }
.new-about-hero aside span { color: var(--new-muted); font-size: 12px; font-weight: 700; }
.new-about-stats { padding: 30px 0; background: #0f172a; color: #fff; }
.new-about-stats > div { display: flex; justify-content: space-around; gap: 24px; }
.new-about-stats span { display: flex; flex-direction: column; text-align: center; font-family: var(--new-header-font);     text-transform: uppercase;
    font-weight: 400;
    color: #999;
    letter-spacing: 1px;
    font-size: 11px;}
.new-about-stats b { color: var(--new-green-bright); font-size: 50px;letter-spacing:0; }
.new-about-story, .new-about-highlights, .new-about-logos, .new-about-books, .new-about-speaking, .new-about-contact { padding: 76px 0; }
.new-about-story > div { max-width: 900px; text-align: center; }
.new-about-story i, .new-about-highlights i, .new-about-logos i, .new-about-books i, .new-about-speaking i, .new-about-contact i { display: block; width: 48px; height: 4px; margin: 0 auto 20px; border-radius: 3px; background: var(--new-green); }
.new-about-story h2, .new-about-highlights h2, .new-about-logos h2, .new-about-books h2, .new-about-speaking h2 { margin: 0 auto 20px; color: #0f172a; font-size: 37px; text-align: center; }
.new-about-story p { margin: 0 0 17px; color: #475467; font-size: 16px; line-height: 1.75; text-align: left; }
.new-about-highlights { background: #f4f7f5; text-align: center; }
.new-about-highlights > div > p, .new-about-logos > div > p { max-width: 720px; margin: 0 auto 42px; color: #475467; font-size: 16px; }
.new-about-highlights > div > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.new-about-highlights article { padding: 27px; border: 1px solid var(--new-line); border-radius: 8px; background: #fff; }
.new-about-highlights article > b { color: var(--new-green); font-family: var(--new-header-font); font-size: 36px; }
.new-about-highlights h3 { margin: 9px 0; color: #0f172a; font-size: 18px; }
.new-about-highlights article p { margin: 0; color: #56606c; font-size: 14px; line-height: 1.65; }
.new-about-logos { text-align: center; }
.new-about-logos > div > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.new-about-logos span { display: flex; flex: 0 0 calc((100% - 80px) / 6); height: 100px; align-items: center; justify-content: center; padding: 14px; border: 1px solid var(--new-line); border-radius: 8px; }
.new-about-logos img { max-width: 128px; max-height: 48px; }
.new-about-logos > div > a { display: inline-block; margin-top: 28px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 15px; font-weight: 700; text-decoration: none; }
.new-about-speaking { background: #f4f7f5; }
.new-about-books section, .new-about-speaking section { text-align: left; }
.new-about-books i, .new-about-speaking i { margin-right: 0; margin-left: 0; }
.new-about-books h2, .new-about-speaking h2 { text-align: left; }
.new-about-books p, .new-about-speaking p { color: #475467; font-size: 16px; line-height: 1.7; }
.new-about-books a, .new-about-speaking a { display: inline-flex; padding: 14px 24px; border-radius: 8px; background: var(--new-green); color: #fff; font-family: var(--new-header-font); font-size: 14px; font-weight: 700; text-decoration: none; }
.new-about-books > div > div > img, .new-about-speaking > div > div > img { width: 100%; }
.new-about-speaking > div > div > img { border-radius: 8px; box-shadow: 0 14px 30px rgba(16,24,40,.14); }
.new-about-contact { background: #1f7038; color: #fff; text-align: center; }
.new-about-contact i { background: #bff0cd; }
.new-about-contact h2 { margin: 0 0 12px; color: #fff; font-size: 37px; }
.new-about-contact p { max-width: 600px; margin: 0 auto 24px; color: #eaf5ee; }
.new-about-contact p a { color: #fff; font-weight: 700; }
.new-about-contact form { max-width: 650px; margin: 0 auto; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.new-about-contact input, .new-about-contact textarea { width: 100%; padding: 13px 15px; border: 0; border-radius: 6px; color: #333; font-family: var(--new-body-font); font-size: 15px; }
.new-about-contact textarea { min-height: 100px; resize: vertical; }
.new-about-full { grid-column: 1 / -1; }
.new-about-contact button { justify-self: center; padding: 14px 30px; border: 0; border-radius: 7px; background: #fff; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 15px; font-weight: 700; cursor: pointer; }
@media (max-width: 820px) { .new-about-hero > div > div, .new-about-books > div > div, .new-about-speaking > div > div { grid-template-columns: 1fr; gap: 36px; } .new-about-speaking > div > div > img { order: 2; } .new-about-highlights > div > div { grid-template-columns: 1fr; } .new-about-logos span { flex-basis: calc((100% - 48px) / 4); } }
@media (max-width: 560px) { .new-about-hero, .new-about-story, .new-about-highlights, .new-about-logos, .new-about-books, .new-about-speaking, .new-about-contact { padding: 54px 0; } .new-about-hero h1 { font-size: 34px; } .new-about-story h2, .new-about-highlights h2, .new-about-logos h2, .new-about-books h2, .new-about-speaking h2, .new-about-contact h2 { font-size: 29px; } .new-about-stats > div { display: grid; grid-template-columns: repeat(2, 1fr); } .new-about-logos span { flex-basis: calc((100% - 16px) / 2); } .new-about-contact form { grid-template-columns: 1fr; } .new-about-full { grid-column: auto; } }

.new-consulting { color: #333; font-family: var(--new-body-font); }
.new-consulting h1, .new-consulting h2, .new-consulting h3 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.15; }
.new-consulting-hero { display: flex; position: relative; min-height: 470px; align-items: center; background-color: #0e3a1e; background-position: right top; background-size: cover; color: #fff; overflow: hidden; }
.new-consulting-hero-wrap { position: relative; z-index: 1; display: flex; align-items: center; }
.new-consulting-hero-image { position: absolute; top: 0; right: 0; z-index: 0; width: 34%; min-width: 30%; height: 100%; object-fit: cover; object-position: top center; -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%); mask-image: linear-gradient(to right, transparent 0%, #000 12%); }
.new-consulting-hero > div > div { max-width: 560px; padding: 64px 0; }
.new-consulting-hero i, .new-consulting-intro i, .new-consulting-focus i, .new-consulting-contact i { display: block; width: 68px; height: 5px; margin-bottom: 22px; border-radius: 3px; background: #bff0cd; }
.new-consulting-hero p { margin: 0 0 14px; color: #bff0cd; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.new-consulting-hero h1 { margin: 0 0 20px; color: #fff; font-size: 50px; text-shadow: 0 2px 22px rgba(0,0,0,.4); }
.new-consulting-hero span { display: block; max-width: 500px; margin-bottom: 32px; color: #eafaef; font-size: 19px; line-height: 1.55; }
.new-consulting-hero a, .new-consulting-contact button { display: inline-flex; padding: 15px 30px; border: 0; border-radius: 8px; background: #fff; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 16px; font-weight: 700; text-decoration: none;     transition: .15s;}
.new-consulting-hero a:hover, .new-consulting-contact button:hover {  background: #eafaef;  transform: translateY(-2px);}
.new-consulting-logos { overflow: hidden; padding: 25px 0 29px; border-top: 1px solid var(--new-line); border-bottom: 1px solid var(--new-line); background: #f4f7f5; }
.new-consulting-logos > p { margin: 0 0 19px; color: #8a968d; font-family: var(--new-header-font); font-size: 11.5px; font-weight: 700; letter-spacing: 1.4px; text-align: center; text-transform: uppercase; }
.new-consulting-logos > div { display: flex; width: max-content; animation: new-home-logo-scroll 48s linear infinite; }
.new-consulting-logos span { display: flex; flex: 0 0 186px; height: 40px; align-items: center; justify-content: center; padding: 0 16px; }
.new-consulting-logos img { max-width: 150px; max-height: 40px; }
.new-consulting-intro { padding: 80px 0 66px; text-align: center; }
.new-consulting-intro > div { max-width: 940px; }
.new-consulting-intro i, .new-consulting-focus i, .new-consulting-contact i { width: 48px; height: 4px; margin-right: auto; margin-left: auto; background: var(--new-green); }
.new-consulting-intro h2, .new-consulting-focus h2 { margin: 0 auto 24px; color: #0f172a; font-size: 37px; }
.new-consulting-intro > div > p { margin: 0 0 18px; color: #475467; font-size: 17px; line-height: 1.7; text-align: left; }
.new-consulting-intro blockquote { margin: 26px 0; padding: 22px 28px; border-left: 4px solid var(--new-green); background: #f4f7f5; color: var(--new-green-dark); font-family: Georgia, serif; font-size: 24px; font-style: italic; text-align: left; }
.new-consulting-approach { padding: 26px 0 76px; background: #f4f7f5; }
.new-consulting-approach > div > div { display: grid; max-width: 1080px; margin: 0 auto; grid-template-columns: 1.15fr .85fr; gap: 40px; padding: 46px 50px; border-radius: 8px; background: #1f7038; color: #fff; }
.new-consulting-approach h2 { margin: 0 0 14px; color: #fff; font-size: 29px; }
.new-consulting-approach section p { margin: 0; color: #e7f4ec; font-size: 16px; line-height: 1.62; }
.new-consulting-approach aside { display: grid; gap: 14px; }
.new-consulting-approach article { padding: 16px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: rgba(255,255,255,.1); }
.new-consulting-approach article b, .new-consulting-approach article span { display: block; }
.new-consulting-approach article b { color: #fff; font-family: var(--new-header-font); font-size: 15.5px; }
.new-consulting-approach article span { color: #cfe9d8; font-size: 13px; }
.new-consulting-approach article a { display: inline-block; margin-top: 9px; color: #fff; font-family: var(--new-header-font); font-size: 12px; font-weight: 700; text-decoration: underline; }
.new-consulting-focus { padding: 78px 0 84px; text-align: center; }
.new-consulting-focus > div > p { max-width: 720px; margin: 0 auto 50px; color: #475467; font-size: 17px; }
.new-consulting-focus > div > div { display: grid; max-width: 1080px; margin: 0 auto; grid-template-columns: repeat(4, 1fr); gap: 42px 30px; }
.new-consulting-focus article b { display: flex; width: 64px; height: 64px; align-items: center; justify-content: center; margin: 0 auto 16px; border-radius: 50%; background: #eaf5ed; }
.new-consulting-focus article svg { width: 30px; height: 30px; fill: none; stroke: var(--new-green-dark); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.new-consulting-focus h3 { margin: 0; color: #0f172a; font-size: 16px; }
.new-consulting-contact { padding: 64px 0; background: #1f7038; color: #fff; text-align: center; }
.new-consulting-contact i { background: #bff0cd; }
.new-consulting-contact h2 { margin: 0 0 12px; color: #fff; font-size: 37px; }
.new-consulting-contact p { max-width: 580px; margin: 0 auto 22px; color: #eaf5ee; font-size: 16px; }
.new-consulting-contact form { max-width: 560px; margin: 0 auto; grid-template-columns: 1fr 1fr; gap: 12px; }
.new-consulting-contact input, .new-consulting-contact textarea { width: 100%; padding: 13px 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 6px; color: #333; font-family: var(--new-body-font); font-size: 15px; }
.new-consulting-contact textarea { min-height: 90px; resize: vertical; }
.new-consulting-full { grid-column: 1 / -1; }
.new-consulting-contact button { justify-self: center; padding: 14px 34px; cursor: pointer; }
@media (max-width: 860px) { .new-consulting-hero { min-height: 0; background-position: center; } .new-consulting-hero-image { position: static; width: 100%; height: 260px; order: -1; } .new-consulting-hero-wrap { flex-direction: column; text-align: center; } .new-consulting-hero > div > div { max-width: 620px; } .new-consulting-approach > div > div { grid-template-columns: 1fr; padding: 36px 28px; } .new-consulting-focus > div > div { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .new-consulting-hero > div > div { padding: 54px 0; } .new-consulting-hero h1 { font-size: 34px; } .new-consulting-hero span { font-size: 17px; } .new-consulting-intro, .new-consulting-approach, .new-consulting-focus, .new-consulting-contact { padding: 54px 0; } .new-consulting-intro h2, .new-consulting-focus h2, .new-consulting-contact h2 { font-size: 29px; } .new-consulting-focus > div > div { gap: 34px 18px; } .new-consulting-focus h3 { font-size: 14px; } .new-consulting-contact form { grid-template-columns: 1fr; } .new-consulting-full { grid-column: auto; } }

.new-news-media { color: #333; font-family: var(--new-body-font); }
.new-news-media h1, .new-news-media h2, .new-news-media h3 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.16; }
.new-news-media-hero { padding: 72px 0; background: #174b2a; color: #fff; }
.new-news-media-hero i, .new-news-media-content i, .new-news-media-contact i { display: block; width: 56px; height: 5px; margin-bottom: 22px; border-radius: 3px; background: #bff0cd; }
.new-news-media-hero p { margin: 0 0 13px; color: #bff0cd; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; }
.new-news-media-hero h1 { max-width: 790px; margin: 0 0 18px; color: #fff; font-size: 48px; }
.new-news-media-hero span { display: block; max-width: 690px; color: #e5f1e9; font-size: 18px; line-height: 1.65; }
.new-news-media-content { padding: 78px 0; background: #f4f7f5; }
.new-news-media-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: 70px; align-items: center; }
.new-news-media-content i { background: var(--new-green); }
.new-news-media-content h2 { margin: 0 0 18px; color: var(--new-charcoal); font-size: 37px; }
.new-news-media-content p { margin: 0 0 30px; color: #475467; font-size: 17px; line-height: 1.7; }
.new-news-media-content h3 { margin: 0 0 16px; color: var(--new-charcoal); font-size: 21px; }
.new-news-media-content ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 28px; margin: 0; padding: 0; list-style: none; }
.new-news-media-content li { position: relative; padding-left: 22px; color: #475467; font-size: 16px; line-height: 1.45; }
.new-news-media-content li::before { position: absolute; top: 8px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--new-green); content: ''; }
.new-news-media-content figure { margin: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 18px 42px rgba(16,24,40,.18); }
.new-news-media-content figure img { display: block; width: 100%; height: auto; }
.new-news-media-contact { padding: 67px 0; background: #1f7038; color: #fff; text-align: center; }
.new-news-media-contact i { margin: 0 auto 22px; }
.new-news-media-contact h2 { max-width: 660px; margin: 0 auto 10px; color: #fff; font-size: 35px; }
.new-news-media-contact p { margin: 0; color: #eaf5ee; font-family: var(--new-header-font); font-size: 18px; font-weight: 700; }
.new-news-media-contact a { display: inline-flex; margin-top: 25px; padding: 14px 27px; border-radius: 8px; background: #fff; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 15px; font-weight: 700; text-decoration: none; }
@media (max-width: 780px) { .new-news-media-grid { grid-template-columns: 1fr; gap: 38px; } .new-news-media-content figure { max-width: 540px; } }
@media (max-width: 560px) { .new-news-media-hero, .new-news-media-content, .new-news-media-contact { padding: 54px 0; } .new-news-media-hero h1 { font-size: 34px; } .new-news-media-content h2, .new-news-media-contact h2 { font-size: 29px; } .new-news-media-content ul { grid-template-columns: 1fr; } }

.new-planners { color: #333; font-family: var(--new-body-font); }
.new-planners h1, .new-planners h2 { font-family: var(--new-header-font); font-weight: 800; line-height: 1.16; }
.new-planners-hero { padding: 72px 0; background: #174b2a; color: #fff; }
.new-planners-hero i, .new-planners-overview i, .new-planners-testimonials i { display: block; width: 56px; height: 5px; margin-bottom: 22px; border-radius: 3px; background: #bff0cd; }
.new-planners-hero p { margin: 0 0 13px; color: #bff0cd; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; }
.new-planners-hero h1 { max-width: 790px; margin: 0 0 18px; color: #fff; font-size: 48px; }
.new-planners-hero span { display: block; max-width: 710px; color: #e5f1e9; font-size: 18px; line-height: 1.65; }
.new-planners-overview { padding: 78px 0; background: #f4f7f5; }
.new-planners-overview-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .84fr); gap: 64px; align-items: center; }
.new-planners-overview i { background: var(--new-green); }
.new-planners-overview p { margin: 0; color: #475467; font-size: 17px; line-height: 1.72; }
.new-planners-csp { display: flex; gap: 22px; align-items: flex-start; margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--new-line); }
.new-planners-csp img { width: 104px; height: 104px; flex: 0 0 104px; object-fit: contain; }
.new-planners-csp p { font-size: 15px; }
.new-planners-video { overflow: hidden; aspect-ratio: 3 / 2; border-radius: 8px; background: #102d1b; box-shadow: 0 20px 46px rgba(16,24,40,.2); }
.new-planners-video iframe { width: 100%; height: 100%; border: 0; }
.new-planners-video-trigger { position: relative; display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; border: 0; background-color: #102d1b; background-position: center; background-size: cover; cursor: pointer; }
.new-planners-video-trigger::after { position: absolute; inset: 0; background: rgba(8,18,12,.36); content: ''; }
.new-planners-video-trigger span { z-index: 1; display: flex; width: 72px; height: 72px; align-items: center; justify-content: center; border-radius: 50%; background: var(--new-green); box-shadow: 0 8px 26px rgba(0,0,0,.32); color: #fff; font-family: var(--new-header-font); font-size: 13px; font-weight: 700; }
.new-planners-clients { padding: 60px 0; background: #fff; text-align: center; }
.new-planners-clients h2 { max-width: 760px; margin: 0 auto 30px; color: var(--new-charcoal); font-size: 27px; }
.new-planners-clients a { display: inline-flex; padding: 14px 26px; border-radius: 8px; background: var(--new-green); color: #fff; font-family: var(--new-header-font); font-size: 15px; font-weight: 700; text-decoration: none; }
.new-planners-clients img { max-width: 100%; height: auto; }
.new-planners-schedule { padding: 68px 0; background: #f4f7f5; text-align: center; }
.new-planners-schedule h2, .new-planners-testimonials h2 { margin: 0 0 28px; color: var(--new-charcoal); font-size: 36px; }
.new-planners-schedule iframe { display: block; width: 100%; height: 218px; border: 1px solid var(--new-line); background: #fff; }
.new-planners-schedule > div > a, .new-planners-testimonials > div > a { display: inline-flex; margin-top: 26px; padding: 14px 26px; border-radius: 8px; background: var(--new-green); color: #fff; font-family: var(--new-header-font); font-size: 15px; font-weight: 700; text-decoration: none; }
.new-planners-testimonials { padding: 72px 0; background: #fff; text-align: center; }
.new-planners-testimonials i { width: 48px; height: 4px; margin: 0 auto 20px; background: var(--new-green); }
.new-planners-testimonials > div > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; text-align: left; }
.new-planners-testimonials blockquote { margin: 0; padding: 30px; border: 1px solid var(--new-line); border-radius: 8px; background: #f4f7f5; }
.new-planners-testimonials blockquote p { margin: 0 0 18px; color: #475467; font-size: 16px; line-height: 1.65; }
.new-planners-testimonials blockquote footer { color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 14px; font-weight: 700; }
@media (max-width: 780px) { .new-planners-overview-grid { grid-template-columns: 1fr; gap: 38px; } .new-planners-video { max-width: 620px; } }
@media (max-width: 560px) { .new-planners-hero, .new-planners-overview, .new-planners-clients, .new-planners-schedule, .new-planners-testimonials { padding: 54px 0; } .new-planners-hero h1 { font-size: 34px; } .new-planners-schedule h2, .new-planners-testimonials h2 { font-size: 29px; } .new-planners-csp { flex-direction: column; } .new-planners-testimonials > div > div { grid-template-columns: 1fr; } }

.new-contact { color: #333; font-family: var(--new-body-font); }
.new-contact h1, .new-contact h2, .new-contact h3, .new-contact strong { font-family: var(--new-header-font); }
.new-contact-hero { padding: 38px 0 28px; background: #f4f7f5; text-align: center; }
.new-contact-hero i, .new-contact-form-title i { display: block; width: 48px; height: 4px; margin: 0 auto 14px; border-radius: 3px; background: var(--new-green); }
.new-contact-hero p { margin: 0 0 10px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 12px; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; }
.new-contact-hero h1 { max-width: 900px; margin: 0 auto 12px; color: #0f172a; font-size: 42px; font-weight: 800; line-height: 1.12; }
.new-contact-hero > div > span { display: block; max-width: 760px; margin: 0 auto; color: #475467; font-size: 16px; line-height: 1.65; }
.new-contact-body { padding: 34px 0 64px; }
.new-contact-grid { display: grid; grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr); gap: 58px; max-width: 1040px; }
.new-contact-profile img { width: 290px; border-radius: 8px; box-shadow: 0 14px 30px rgba(16,24,40,.18); }
.new-contact-profile h2 { margin: 19px 0 2px; color: #0f172a; font-size: 18px; font-weight: 800; }
.new-contact-profile > p { margin: 0 0 17px; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.new-contact-detail { display: flex; align-items: center; gap: 12px; margin-top: 13px; color: #3f4753; font-size: 14px; line-height: 1.45; }
.new-contact-detail i { display: flex; width: 40px; height: 40px; flex: 0 0 40px; align-items: center; justify-content: center; border-radius: 8px; background: var(--new-green); color: #fff; font-size: 17px; font-style: normal; }
.new-contact-detail strong { display: block; color: var(--new-muted); font-size: 11px; letter-spacing: .6px; text-transform: uppercase; }
.new-contact-detail a { color: #1f2937; font-weight: 700; text-decoration: none; }
.new-contact-form { padding: 28px 30px; border: 1px solid var(--new-line); border-radius: 8px; background: #f4f7f5; box-shadow: 0 9px 24px rgba(16,24,40,.06); }
.new-contact-form h2 { margin: 0 0 2px; color: #0f172a; font-size: 22px; font-weight: 800; }
.new-contact-form > p { margin: 0 0 17px; color: var(--new-muted); font-size: 13px; }
.new-contact-form label { display: block; margin-bottom: 6px; color: #0f172a; font-family: var(--new-header-font); font-size: 12px; font-weight: 700; }
.new-contact-form label span { color: var(--new-green); }
.new-contact-form input, .new-contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--new-line); border-radius: 7px; background: #fff; color: #333; font-family: var(--new-body-font); font-size: 15px; }
.new-contact-form input:focus, .new-contact-form textarea:focus { border-color: var(--new-green); outline: 0; }
.new-contact-form textarea { min-height: 110px; resize: vertical; }
.new-contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.new-contact-field { margin-bottom: 14px; }
.new-contact-form button { padding: 13px 31px; border: 0; border-radius: 7px; background: var(--new-green); color: #fff; cursor: pointer; font-family: var(--new-header-font); font-size: 15px; font-weight: 700; }
.new-contact-form .new-contact-notice { margin-top: 14px; color: var(--new-green-dark); font-weight: 700; }
.new-gravity-form .gform_wrapper { margin: 0; max-width: none; }
.new-gravity-form .gform_body ul, .new-gravity-form .gform_fields { margin: 0; padding: 0; list-style: none; }
.new-gravity-form .gfield { margin: 0 0 14px; }
.new-gravity-form .gfield_label { display: block; margin-bottom: 6px; font-family: var(--new-header-font); font-size: 12px; font-weight: 700; }
.new-gravity-form input:not([type="submit"]), .new-gravity-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--new-line); border-radius: 7px; background: #fff; color: #333; font-family: var(--new-body-font); font-size: 15px; }
.new-gravity-form textarea { min-height: 110px; resize: vertical; }
.new-gravity-form .gform_footer { margin: 0; padding: 0; }
.new-gravity-form input[type="submit"] { width: unset;padding: 13px 31px; border: 0; border-radius: 7px !important; background: var(--new-green); color: #fff; cursor: pointer; font-family: var(--new-header-font); font-size: 14px !important; font-weight: 700;box-shadow: 0 6px 18px rgba(46, 139, 69, .28);transition: .15s; }
.new-gravity-form input[type="submit"]:hover { background: var(--new-green-dark) !important;color:#fff !important;transform: translateY(-2px); }
.new-gravity-form .gfield_error input, .new-gravity-form .gfield_error textarea { border-color: #c33; }
.new-gravity-form .validation_error, .new-gravity-form .validation_message { color: #b42318; font-size: 14px; }
.new-home-contact .new-gravity-form .gform_fields, .new-speaking-contact .new-gravity-form .gform_fields, .new-about-contact .new-gravity-form .gform_fields, .new-consulting-contact .new-gravity-form .gform_fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.new-home-contact .new-gravity-form .gfield, .new-speaking-contact .new-gravity-form .gfield, .new-about-contact .new-gravity-form .gfield, .new-consulting-contact .new-gravity-form .gfield { width: auto; margin: 0; }
.new-home-contact .new-gravity-form .gfield:nth-child(n+3), .new-speaking-contact .new-gravity-form .gfield:nth-child(n+3), .new-about-contact .new-gravity-form .gfield:nth-child(n+3), .new-consulting-contact .new-gravity-form .gfield:nth-child(n+3) { grid-column: 1 / -1; }
.new-home-contact .new-gravity-form .gfield_label, .new-speaking-contact .new-gravity-form .gfield_label, .new-about-contact .new-gravity-form .gfield_label, .new-consulting-contact .new-gravity-form .gfield_label { color: #fff; }
.new-home-contact .new-gravity-form .gfield_label, .new-speaking-contact .new-gravity-form .gfield_label, .new-about-contact .new-gravity-form .gfield_label, .new-consulting-contact .new-gravity-form .gfield_label, .new-contact-form .new-gravity-form .gfield_label { float: none !important; width: auto !important; }
.new-home-contact .new-gravity-form input:not([type="submit"]), .new-home-contact .new-gravity-form textarea, .new-speaking-contact .new-gravity-form input:not([type="submit"]), .new-speaking-contact .new-gravity-form textarea, .new-about-contact .new-gravity-form input:not([type="submit"]), .new-about-contact .new-gravity-form textarea, .new-consulting-contact .new-gravity-form input:not([type="submit"]), .new-consulting-contact .new-gravity-form textarea { width: 100% !important; border-color: rgba(255,255,255,.3); }
.new-home-contact .new-gravity-form .gform_footer, .new-speaking-contact .new-gravity-form .gform_footer, .new-about-contact .new-gravity-form .gform_footer, .new-consulting-contact .new-gravity-form .gform_footer { margin-top: 15px; text-align: left; }
.new-home-contact .new-gravity-form input[type="submit"], .new-speaking-contact .new-gravity-form input[type="submit"], .new-about-contact .new-gravity-form input[type="submit"], .new-consulting-contact .new-gravity-form input[type="submit"] { background: #fff; color: var(--new-green-dark); }
.new-gravity-form .gform_footer { display: block; position: static !important; clear: both; float: none !important; }
.new-gravity-form .gfield_captcha_container { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.new-gravity-form .gfield_captcha_input_container { width: 100%;max-width: 200px; }
.new-gravity-form .gfield_captcha_input_container input { width: 100% !important; }
.gform-footer.gform_footer.left_label {
    width: 100% !important;
}
@media (min-width: 641px) {
    .new-gravity-form .gfield_captcha_container {
        flex-direction: row;
        align-items: stretch !important;
		justify-content: center !important;
    }
    
    .gfield_captcha_container input,
    .new-gravity-form .gfield_captcha_input_container {
        height: 100%;
    }
}
.new-contact-form .new-gravity-form .gform_fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.new-contact-form .new-gravity-form .gfield { width: auto; margin: 0; }
.new-contact-form .new-gravity-form .gfield:nth-child(n+3) { grid-column: 1 / -1; }
.new-contact-form .new-gravity-form .gfield:has(.ginput_container_date) { grid-column: 1 / -1; }
.new-contact-form .new-gravity-form .ginput_container_date, .new-contact-form .new-gravity-form .ginput_container_date input { width: 100% !important; }
.new-contact-form .new-gravity-form input:not([type="submit"]), .new-contact-form .new-gravity-form textarea { border-color: var(--new-line); }
@media (max-width: 560px) { .new-home-contact .new-gravity-form .gform_fields, .new-speaking-contact .new-gravity-form .gform_fields, .new-about-contact .new-gravity-form .gform_fields, .new-consulting-contact .new-gravity-form .gform_fields, .new-contact-form .new-gravity-form .gform_fields { grid-template-columns: 1fr; } .new-home-contact .new-gravity-form .gfield, .new-speaking-contact .new-gravity-form .gfield, .new-about-contact .new-gravity-form .gfield, .new-consulting-contact .new-gravity-form .gfield, .new-contact-form .new-gravity-form .gfield { grid-column: auto; } }
.gform_wrapper.gravity-theme .left_label div.gfield>div:not(.ui-resizable-handle):not(.gfield-admin-icons) {
    width: 100% !important;
}

.gfield_captcha_container {
    flex-direction: column;
    align-items: flex-start !important;
}
div#field_3_5 .gfield_captcha_container {
    align-items: center !important;
    justify-content: center !important;
}

img.gfield_captcha {
    border-radius: 5px;
}

.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
    padding-left: 0 !important;
}

p.gform_required_legend {
    display: none;
}

.new-home-contact .new-gravity-form input[type="submit"], .new-speaking-contact .new-gravity-form input[type="submit"], .new-about-contact .new-gravity-form input[type="submit"], .new-consulting-contact .new-gravity-form input[type="submit"] {
    border-radius: 5px;
    transition: all 0.1s ease-in;
}

.btn-green:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=image]:hover, .gform_wrapper .gform_footer input[type=submit]:hover {
    background: #eafaef !important;
    transform: translateY(-2px);
    color: #1e6d3e !important;
}
@media (max-width: 720px) { 
	.new-header-actions {
		display: none;
	}

	.new-consulting-hero:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: inherit;
    background-size: cover;
}

section.new-consulting-hero {
    position: relative;
    background-size: 0;
}

section.new-consulting-hero:after {
    content:'';
    background: #0e3a1e;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7
}

section.new-consulting-hero:after {}
}

.new-home-wrap {
    position: relative;
    z-index: 1;
}

/* WooCommerce order-received / thank-you page */
.woocommerce-order, .woocommerce-order-received { max-width: 900px; margin: 0 auto; padding: 44px 24px 80px; font-family: var(--new-body-font); color: #475467; }
.woocommerce-order .woocommerce-notice, .woocommerce-order-received .woocommerce-notice { margin: 0 0 26px; padding: 16px 20px; border-radius: 8px; background: #eafaef; color: var(--new-green-dark); font-family: var(--new-header-font); font-size: 17px; font-weight: 700; }
.woocommerce-order .woocommerce-notice--error { background: #fce8e8; color: #7b1f1f; }
.woocommerce-order-overview { display: flex; flex-wrap: wrap; margin: 0 0 40px; padding: 22px 26px; border: 1px solid var(--new-line); border-radius: 8px; background: #f4f7f5; list-style: none; }
.woocommerce-order-overview li { margin: 0 34px 0 0; padding: 0; border: 0; font-size: 12.5px; color: var(--new-muted); font-family: var(--new-header-font); font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.woocommerce-order-overview li strong { display: block; margin-top: 4px; color: var(--new-charcoal); font-size: 17px; font-weight: 800; text-transform: none; letter-spacing: 0; }
.woocommerce-order h2 { margin: 0 0 18px; color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 26px; font-weight: 800; }
.woocommerce-order table.shop_table, .woocommerce-order table.woocommerce-table { width: 100%; margin: 0 0 30px; border-collapse: collapse; border: 1px solid var(--new-line); border-radius: 8px; overflow: hidden; }
.woocommerce-order table.shop_table th, .woocommerce-order table.woocommerce-table th { padding: 14px 18px; background: #f4f7f5; color: var(--new-charcoal); font-family: var(--new-header-font); font-size: 13px; font-weight: 700; text-align: left; }
.woocommerce-order table.shop_table td, .woocommerce-order table.woocommerce-table td { padding: 14px 18px; border-top: 1px solid var(--new-line); font-size: 15px; }
.woocommerce-order table.shop_table tfoot th, .woocommerce-order table.shop_table tfoot td { font-weight: 700; color: var(--new-charcoal); }
.woocommerce-order table.shop_table a { color: var(--new-green-dark); font-weight: 700; text-decoration: none; }
.woocommerce-order table.shop_table a:hover { text-decoration: underline; }
@media (max-width: 560px) { .woocommerce-order-overview { flex-direction: column; gap: 14px; } .woocommerce-order-overview li { margin-right: 0; } }

/* Direct Stripe Checkout popup: match left marketing panel height to the form panel and center its content */
h3.dsc-modal__content-title {
    color: #fff;
}
.dsc-modal__content-body h3 {
    color: #fff;
}
.dsc-modal__layout { align-items: stretch !important; background: linear-gradient(to right, #0f172a 0%, #1d2671 50%, #fff 50%, #fff 100%) !important; }
.dsc-modal__panel--content { display: flex !important; flex-direction: column !important; justify-content: center !important; background: none !important; }
.dsc-modal__panel--form { background: none !important; }
@media (max-width: 768px) { .dsc-modal__layout { background: linear-gradient(to bottom, #0f172a 0%, #1d2671 50%, #fff 50%, #fff 100%) !important; } }

@media (max-width: 768px) {
    .dsc-modal__layout {
        background: #fff !important;
    }
    
    .dsc-modal__panel.dsc-modal__panel--content {
        background: #1d2671 !important;
    }
}
@media (max-width: 560px) { .new-contact-hero h1 { font-size: 32px; } .new-contact-grid { grid-template-columns: 1fr; gap: 34px; } .new-contact-profile img { width: min(290px, 100%); } .new-contact-fields { grid-template-columns: 1fr; gap: 0; } .new-contact-form { padding: 24px 20px; } }