/* 
   Scale - GTM, SaaS & Services 
   Main Stylesheet
   
   CSS Variables compiled from Theme Editor fields
*/

/* ========================
   CSS VARIABLES (from Theme Fields)
======================== */
:root {
    /* Brand Colors */ 
    --primary: #8bc34a;
    --secondary: #1E293B;
    --color-background: #0d1b2d;
    --text-white: #FFFFFF;
    --text-muted: #b8c5d9;
    --color-border: #334155;
    --bg: #07111f;
    --bg2: #0d1b2d;
	  --line: rgba(255,255,255,0.12);
    /* Typography */
    --font-body: Plus Jakarta Sans, sans-serif;
    --font-heading: Plus Jakarta Sans, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;
    
    /* Links */
    --link-color: #3E6B1F;
    --link-hover-color: #1D4ED8;
    
    /* Heading Scale */
    
    --h1-size: 3.8rem;
    --h2-size: 2.5rem;
    --h3-size: 1.25rem;
    --h4-size: 1.15rem;
    
    
    /* Layout */
    
    --container-width: 1200px;
    
    
    
    --section-padding: 100px;
    
    
    
    --grid-gap: 24px;
    
    
    --border-radius: 12px;
    
    
    --shadow: 0 20px 60px rgba(0,0,0,0.35);
    
    
    /* Buttons */
    --btn-radius: 50px;
    
    --btn-padding: 14px 22px;
    --btn-font-size: 1rem;
    
    
    /* Forms */
    --input-radius: 8px;
    --focus-color: #3E6B1F;
    --form-bg-color: #1E293B;
    --form-border-color: #334155;
    --form-label-color: #FFFFFF;
    --form-field-border-color: #475569;
    --form-btn-text-color: #FFFFFF;
    --form-btn-bg-color: #3E6B1F;
    --form-btn-hover-color: #1D4ED8;
}

/* ========================
   BASE RESET & DEFAULTS
======================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--text-white);
    line-height: var(--line-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	background: radial-gradient(circle at top right, rgba(61, 213, 243, 0.12), transparent 28%), radial-gradient(circle at top left, rgba(139, 195, 74, 0.14), transparent 24%), linear-gradient(180deg, var(--bg), #08101c 50%, #06101b 100%);
	 padding-top: 80px;
	
}

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
}

h1 { font-size: var(--h1-size); letter-spacing: -0.02em; }
h2 { font-size: var(--h2-size); letter-spacing: -0.01em; }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h1 em, h2 em {font-style: normal;color: var(--primary);}
p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

a {
    color: var(--link-color, var(--primary));
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--link-hover-color, var(--primary));
    text-decoration: underline;
}


a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}


/* ========================
   LAYOUT
======================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: 800px;
    overflow: hidden;
}

.section {
    padding: var(--section-padding) 0;
   
}

.body-container-wrapper {
    min-height: 100vh;
}

/* ========================
   BUTTONS
======================== */
.btn {
    display: inline-block;
    padding: var(--btn-padding);
    font-size: var(--btn-font-size);
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none !important;
    border-radius: var(--btn-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
	  box-shadow: 0 12px 30px rgba(139, 195, 74, 0.25);
}

.btn-primary:hover {
    
    filter: brightness(0.9);
	  color: var(--secondary);
    
}

.btn-outline {
    background: transparent;
    border-color: var(--color-border);
    color: var(--text-white) !important;
}

.btn-outline:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

/* ========================
   FORMS
======================== */
.hs-form label {
    color: var(--form-label-color, var(--text-muted)) !important;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.hs-input {
    width: 100%;
    padding: 12px 16px;
    
    background: transparent;
    
    border: 1px solid var(--form-field-border-color, var(--color-border));
    border-radius: var(--input-radius);
    color: var(--text-white);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hs-input:focus {
    border-color: var(--focus-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.hs-button {
    padding: var(--btn-padding);
    background: var(--form-btn-bg-color, var(--primary));
    color: var(--form-btn-text-color, white);
    border: none;
    border-radius: var(--btn-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hs-button:hover {
    background: var(--form-btn-hover-color, var(--primary));
    
    filter: brightness(0.9);
    
}

/* ========================
   HEADER
======================== */
.header {
   /* background-color: var(--color-background);*/
    border-bottom: 1px solid var(--color-border);
    padding: 5px 0;
    
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-logo {
    height: 73px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > ul > li {
    position: relative;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 8px 0;
    display: block;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown Menu Styling */
.nav-links > ul > li,
.nav-links .hs-menu-wrapper > ul > li {
    position: relative;
}

.nav-links li ul,
.nav-links .hs-menu-children-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 12px 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 100;
    margin-top: 0;
    list-style: none;
}

.nav-links li:hover > ul,
.nav-links li:hover > .hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
}

.nav-links li ul li,
.nav-links .hs-menu-children-wrapper li {
    position: relative;
    display: block;
    width: 100%;
}

.nav-links li ul a,
.nav-links .hs-menu-children-wrapper a {
    padding: 10px 20px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    text-align: left;
}

.nav-links li ul a:hover,
.nav-links .hs-menu-children-wrapper a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

/* Arrow indicator for parent items with children */
.nav-links li.hs-item-has-children > a::after,
.nav-links li:has(> ul) > a::after,
.nav-links li:has(> .hs-menu-children-wrapper) > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.nav-links li.hs-item-has-children:hover > a::after,
.nav-links li:has(> ul):hover > a::after,
.nav-links li:has(> .hs-menu-children-wrapper):hover > a::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* ========================
   FOOTER
======================== */
.footer {
    background-color: #020617;
    padding: 25px 0 10px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 20px;
}

/* Push the last column (Connect) to the right */
.footer-grid > *:last-child {
    grid-column: 4;
    text-align: right;
    justify-self: end;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 24px;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
}
.footer-bottom p {margin-bottom:0}
/* ========================
   SECTION HEADERS
======================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ========================
   HERO MODULE
======================== */
.hero {
    padding: 120px 0 100px;
    text-align: left;
   /* background: radial-gradient(ellipse at top center, var(--secondary) 0%, var(--color-background) 70%); */
}

.hero h1 {
    font-size: var(--h1-size);
    max-width: 900px;
    margin: 0 auto 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
 }

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    margin-top: 60px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ========================
   HERO FORM MODULE
======================== */
.hero-form {
    padding: 80px 0 80px;
   /* background: radial-gradient(ellipse at top center, var(--secondary) 0%, var(--color-background) 70%); */
}

.hero-form-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}

.hero-form-content h1 {
    font-size: var(--h1-size);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-form-content .hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
	  margin-bottom: 28px;
    font-weight: 300;
}

.hero-form--centered .hero-form-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-form--centered .hero-form-content .hero-subtitle {
    margin: 0 auto 40px;
}

.hero-form-wrapper {
    background: var(--secondary);
    padding: 30px;
    border-radius: var(--border-radius);
	  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)), linear-gradient(180deg, rgba(61, 213, 243, 0.08), rgba(139, 195, 74, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}
.hero-form-wrapper h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}
.panel-item {
	padding: 14px 16px; border-radius: 14px;
	background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.08);
  background: rgba(30,41,59,1); border: 1px solid var(--color-border);
	margin-bottom: 12px;
}
.panel-item:last-child { margin-bottom: 0; }
.panel-item strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.panel-item p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

.savings-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.savings-item {
	padding: 14px; border-radius: 14px;
	background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.08);
	text-align: center;
}
.savings-item strong { display: block; font-size: 1.4rem; color: var(--primary); }
.savings-item span { font-size: 0.8rem; color: var(--text-muted); }

/* Hero Form - Form Styling */
.hero-form-wrapper .hs-form {display: flex;flex-direction: column;}

.form-box {
	margin-top: 20px; padding: 20px; border-radius: 16px;
	background: rgba(212,168,33,0.08); border: 1px solid rgba(212,168,33,0.2);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)), linear-gradient(180deg, rgba(61, 213, 243, 0.08), rgba(139, 195, 74, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.form-box h4 { font-size: 0.95rem; margin-bottom: 14px; }
.form-box input {
	width: 100%; padding: 11px 14px; border-radius: 10px;
	background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
	color: var(--text); font-size: 0.9rem;
	margin-bottom: 10px; outline: none;
}
.form-box input:focus { border-color: var(--gold); }
.form-box .btn { width: 100%; justify-content: center; margin-top: 4px; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 16px; border-radius: 999px;
	background: rgba(30,41,59,1); border: 1px solid var(--color-border);
	color: var(--primary); font-size: 0.88rem; font-weight: 600; 
	margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

.trust-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.trust-item::before { content: '✓'; color: var(--primary); font-weight: 700; }

.hero-form-wrapper .hs-form fieldset {
    max-width: 100% !important;
    margin: 0 !important;
}

.hero-form-wrapper .hs-form .hs-form-field {
    margin-bottom: 0;
}

.hero-form-wrapper .hs-form label {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
}

.hero-form-wrapper .hs-form label .hs-form-required {
    color: #f87171;
}

.hero-form-wrapper .hs-form .hs-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
	font-family: var(--font-body);
}

.hero-form-wrapper .hs-form .hs-input::placeholder {
    color: var(--text-muted);
}

.hero-form-wrapper .hs-form .hs-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.hero-form-wrapper .hs-form textarea.hs-input {
    min-height: 120px;
    resize: vertical;
}

.hero-form-wrapper .hs-form .hs-button {
    width: 100%;
    padding: 16px 24px;
    margin-top: 8px;
    background: var(--primary);
    color: white !important;
    border: none;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
	  font-family: var(--font-body);
}

.hero-form-wrapper .hs-form .hs-button:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 195, 74, 0.25);
}

.hero-form-wrapper .hs-form .hs-error-msgs {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.hero-form-wrapper .hs-form .hs-error-msgs li {
    color: #f87171;
    font-size: 0.85rem;
}

.hero-form-wrapper .hs-form .legal-consent-container {
    margin-top: 8px;
}

.hero-form-wrapper .hs-form .legal-consent-container p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.form-placeholder {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}

/* ========================
   SERVICES MODULE
======================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--grid-gap);
}

.service-card {
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card > div {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 20px 0 0;
    margin-top: 20px;
    border-top: 1px solid var(--color-border);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.feature-list svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ========================
   FEATURE GRID MODULE
======================== */
/* ── Grid ── */
.feature-grid {
    display: grid;
    gap: var(--grid-gap);
}
.feature-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Card base ── */
.feature-item {
    text-align: center;
    padding: 30px;
}

/* ── Icon (centered layout) ── */
.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ── Icon-left layout ── */
.feature-item--icon-left {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.feature-item--icon-left .feature-icon {
    margin: 0;          /* remove auto centering */
}

.feature-item--icon-left .feature-content {
    flex: 1;
}

/* ── Typography ── */
.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .feature-grid--cols-2,
    .feature-grid--cols-3,
    .feature-grid--cols-4 {
        grid-template-columns: 1fr;
    }
}

/* ========================
   STATS STRIP MODULE
======================== */
.stats-strip {
    padding: 60px 0;
   /* border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border); */
}
/*
.stats-strip--secondary {
    background: var(--secondary);
} */

.stats-strip--accent {
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}
.stat-card {
	border-radius: var(--border-radius); padding: 22px;
	 background: var(--secondary); border: 1px solid var(--color-border);
	text-align: center;
}
.stat-value {
	font-size: 1.8rem;
	color: var(--primary);
	font-family: var(--font-heading);
	line-height: 1;
	font-weight: 700;
	margin-bottom: 8px;
}

.stat-label {
	color: var(--text-muted);
	font-size: 0.9rem;
	}

/* PROBLEM */
    .problem-band {
      border-radius: 28px; padding: 0 40px;
      background: linear-gradient(135deg, rgb(212 255 238 / 15%), rgba(0, 0, 0, 0.2))
      border: 1px solid var(--color-border);
    }
    .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
    .problem-item {
      padding: 16px 18px; border-radius: 14px;
      background: rgb(30 41 59 / 77%);
      border-left: 3px solid #3e6b1f;
    }
    .problem-item p { font-size: 0.92rem; margin: 4px 0 0; }

/* CARDS */
	.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
	.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
	.card {
		border-radius: var(--border-radius); padding: 26px;
		background: var(--card); border: 1px solid var(--color-border);
		box-shadow: var(--shadow); transition: border-color 0.25s;
	}
	.card:hover { border-color: rgb(139 195 74 / 51%); }
	.card-icon {
		width: 44px; height: 44px; border-radius: 12px;
		background: linear-gradient(135deg, var(--primary), var(--focus-color));
		display: flex; align-items: center; justify-content: center;
		font-size: 1.3rem; margin-bottom: 14px;
	}
	.card h3 { margin-bottom: 10px; }
	.card p { color: var(--text-muted); font-size: 0.93rem; }
	ul.dots { list-style: none; padding: 0; margin: 12px 0 0; }
	ul.dots li {
		position: relative; padding-left: 16px;
		margin-bottom: 8px; color: var(--text-muted); font-size: 0.9rem;
	}
	ul.dots li::before {
		content: ''; position: absolute; left: 0; top: 9px;
		width: 6px; height: 6px; border-radius: 50%;
		background: linear-gradient(135deg, var(--primary), var(--focus-color));
	}
/* PROCESS STEPS */
    .steps { display: grid; gap: 16px; margin-top: 28px; }
    .step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start; }
    .step-num {
      width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--primary), var(--focus-color));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem; color: white;
    }
    .step-body h3 { margin-bottom: 6px; }
    .step-body p { color: var(--text-muted); font-size: 0.93rem; }

/* DELIVERABLES */
    .deliverables-band {
      border-radius: 28px; padding: 40px;
      background:
        radial-gradient(ellipse at top right, rgba(212,168,33,0.1), transparent 50%),
        rgba(255,255,255,0.04);
      border: 1px solid var(--color-border);
    }
    .deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
    .deliverable-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 16px; border-radius: 14px;
      background: rgba(0,0,0,0.2); border: 1px solid var(--color-border);
    }
    .del-num {
      width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--primary), var(--focus-color));
      color: #ffffff; font-weight: 700; font-size: 0.85rem;
      display: flex; align-items: center; justify-content: center;
 
    }
    .deliverable-item p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
    .deliverable-item strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }
  
 /* TAGS */
    .tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
    .tag {
      padding: 7px 14px; border-radius: 999px;
      background: rgba(255,255,255,0.05); border: 1px solid var(--color-border);
      color: var(--text-muted); font-size: 0.85rem;
    }


 /* THREE PILLARS */
    .pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .pillar {
      border-radius: var(--radius); padding: 30px;
      background: var(--card); border: 1px solid var(--color-border);
      box-shadow: var(--shadow); position: relative; overflow: hidden;
      transition: border-color 0.25s;
    }
    .pillar:hover { border-color: rgb(139 195 74 / 51%)}
    .pillar-num {
      font-size: 3.5rem; font-weight: 800;
      color: rgba(255,255,255,0.08); position: absolute; top: 16px; right: 20px;
      line-height: 1;
    }
    .pillar-badge {
      display: inline-block; padding: 5px 12px; border-radius: 999px;
      font-size: 0.78rem; font-weight: 600;
      margin-bottom: 16px;
    }
    .pillar-badge.process { background: rgb(30 41 59 / 77%); border: 1px solid rgba(30,107,46,0.3); color: var(--primary); }
    .pillar-badge.ai { background: rgba(58,123,213,0.15); border: 1px solid rgba(58,123,213,0.3); color: var(--primary); }
    .pillar-badge.ocm { background: rgba(212,168,33,0.12); border: 1px solid rgba(212,168,33,0.25); color: var(--primary); }
    .pillar h3 { margin-bottom: 12px; font-size: 1.3rem; }
    .pillar p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 16px; }
    


/* INTEGRATION SCENARIOS */
    .integration-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .int-item {
      display: flex; align-items: center; gap: 16px;
      padding: 16px 20px; border-radius: 14px;
      background: var(--secondary); border: 1px solid var(--color-border);
    }
    .int-from, .int-to {
      font-weight: 700; font-size: 0.9rem;
      padding: 6px 14px; border-radius: 8px;
      background: rgba(30,107,46,0.2); border: 1px solid rgba(30,107,46,0.3);
      white-space: nowrap;
    }
    .int-to { background: rgba(255, 255, 255, 0.06); border-color: var(--color-border); color: var(--primary); }
    .int-arrow { color: var(--text-muted); font-size: 1.1rem; flex-shrink: 0; }
    .int-label { font-size: 0.85rem; color: var(--text-muted); flex: 1; }

/* ========================
   TESTIMONIALS MODULE
======================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-background);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--grid-gap);
}

.testimonial-card {
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 30px;
}

.star-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.author-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.funding-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========================
   PRICING MODULE
======================== */
.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--grid-gap);
    align-items: stretch;
}

.pricing-card {
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

/* CLIENT LOGOS STRIP */
    .clients-band {
      border-radius: 24px; padding: 32px 36px;
      background: var(--card); border: 1px solid var(--color-border);
    }
    .clients-band p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
    .client-logos { display: flex; flex-wrap: wrap; gap: 14px; }
    .client-logo {
      padding: 10px 18px; border-radius: 10px;
      background: rgba(255,255,255,0.06); border: 1px solid var(--color-border);
      font-family: font-weight: 600; font-size: 0.88rem;
      color: var(--muted);
    }

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card-featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-description {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    min-height: 50px;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta {
    width: 100%;
    text-align: center;
}

/* ========================
   FAQ MODULE
======================== */
.faq-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-item {
    background: var(--secondary);
    border: 1px solid var(--color-border);
    margin-bottom: 12px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer div,
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ========================
   CTA MODULE
======================== */
.cta-section {
    padding: var(--section-padding) 0;
    text-align: center;
    background-color: var(--color-background);
}

.cta-section h2 {
    font-size: var(--h2-size);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 32px;
}

/* ========================
   NEWSLETTER MODULE
======================== */
.newsletter-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--color-background);
    border-top: 1px solid var(--color-border);
}

.newsletter-section h2 {
    font-size: var(--h2-size);
    margin-bottom: 16px;
}

.newsletter-section p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.newsletter-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

/* Newsletter Form Styling */
.newsletter-section .hs-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.newsletter-section .hs-form fieldset {
    width: 100%;
    max-width: 100% !important;
    margin: 0 !important;
}

.newsletter-section .hs-form .hs-form-field {
    margin-bottom: 0;
}

.newsletter-section .hs-form label {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
}

.newsletter-section .hs-form .hs-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.newsletter-section .hs-form .hs-input::placeholder {
    color: var(--text-muted);
}

.newsletter-section .hs-form .hs-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.newsletter-section .hs-form .hs-button {
    padding: 16px 40px;
    margin-top: 8px;
    background: var(--primary);
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-section .hs-form .hs-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.newsletter-section .hs-form .legal-consent-container {
    margin-top: 16px;
}

.newsletter-section .hs-form .legal-consent-container p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ========================
   LOGO CAROUSEL
======================== */
.logo-carousel-section {
    padding: 60px 0;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-grid img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(2);
}

/* ========================
   HOW IT WORKS MODULE
======================== */
.how-it-works-section {
    padding: var(--section-padding) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 24px;
}

.step-item h3 {
    margin-bottom: 12px;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================
   ICON LIST MODULE
======================== */
.icon-list {
    list-style: none;
}

.icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.icon-list-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-list--accent .icon-list-icon { color: var(--primary); }
.icon-list--success .icon-list-icon { color: #22c55e; }
.icon-list--primary .icon-list-icon { color: var(--primary); }

.icon-list-text {
    color: var(--text-white);
}

/* ========================
   VIDEO EMBED MODULE
======================== */
.video-embed {
    margin: 30px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.video-wrapper--16-9 { padding-top: 56.25%; }
.video-wrapper--4-3 { padding-top: 75%; }
.video-wrapper--1-1 { padding-top: 100%; }

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    background: var(--secondary);
    padding: 60px;
    text-align: center;
    color: var(--text-muted);
}

.video-caption {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

/* ========================
   MEETING CARD MODULE
======================== */
.questions-card {
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.questions-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.questions-card p {
    margin-bottom: 20px;
}

.email-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========================
   CONTACT PAGE
======================== */
.contact-page-wrapper {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h1 {
    font-size: var(--h1-size);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.1rem;
}

.contact-form-container {
    background: var(--secondary);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

/* ========================
   CONFIRMATION PAGE
======================== */
.confirmation-page-wrapper {
    padding: var(--section-padding) 0;
}

.confirmation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.confirmation-content h1 {
    font-size: var(--h1-size);
    margin-bottom: 16px;
}

.next-steps {
    margin-top: 40px;
    padding: 30px;
    background: var(--secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.next-steps h6 {
    margin-bottom: 16px;
}

.step-list {
    list-style: none;
}

.step-list li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.step-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ========================
   BLOG STYLES
======================== */
.blog-header {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at top center, var(--secondary) 0%, var(--color-background) 70%);
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--grid-gap);
    padding: 60px 0;
}

.blog-card {
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-topics {
    margin-bottom: 12px;
}

.topic-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
}

.blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.blog-card h2 a {
    color: var(--text-white);
}

.blog-card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-post-header {
    padding: 80px 0 40px;
    text-align: center;
}

.blog-post-header h1 {
    max-width: 800px;
    margin: 0 auto 24px;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--text-muted);
}

.blog-post-featured-image {
    margin-bottom: 60px;
}

.blog-post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.blog-post-content {
    padding-bottom: 60px;
}

.blog-post-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Ensure all images in blog post body are constrained */
.blog-post-content img {
    display: block;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    border-radius: var(--card-radius);
    margin: 24px 0;
}

.blog-post-content p img,
.blog-post-content span img {
    display: block;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}

.blog-author-box {
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 60px;
}

.author-box-inner {
    display: flex;
    gap: 24px;
    align-items: center;
}

.author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.blog-related-posts {
    padding: 60px 0;
}

.blog-related-posts h3 {
    margin-bottom: 30px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

/* ========================
   SEARCH RESULTS
======================== */
.search-results-wrapper {
    padding: var(--section-padding) 0;
}

.search-header {
    text-align: center;
    margin-bottom: 60px;
}

.search-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--btn-radius);
    color: var(--text-white);
    font-size: 1rem;
}

.search-result-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
}

.search-result-item h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.search-result-item h2 a {
    color: var(--text-white);
}

.result-url {
    color: var(--primary);
    font-size: 0.85rem;
}

.search-no-results {
    text-align: center;
    padding: 60px 0;
}

/* ========================
   ANNOUNCEMENT BAR MODULE
======================== */
.announcement-bar {
    padding: 12px 0;
    text-align: center;
    position: relative;
}

.announcement-bar--primary {
    background: var(--primary);
    color: white;
}

.announcement-bar--accent {
    background: linear-gradient(90deg, var(--primary), #8b5cf6);
    color: white;
}

.announcement-bar--dark {
    background: #020617;
    color: white;
    border-bottom: 1px solid var(--color-border);
}

.announcement-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.announcement-message {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: inherit;
}

.announcement-link {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 8px;
}

.announcement-link:hover {
    opacity: 0.9;
}

.announcement-dismiss {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
    position: absolute;
    right: 20px;
}

.announcement-dismiss:hover {
    opacity: 1;
}

/* ========================
   CONTACT CARDS MODULE
======================== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--grid-gap);
}

.contact-card {
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card-value {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

a.contact-card-value {
    color: var(--primary);
    font-weight: 600;
}

a.contact-card-value:hover {
    text-decoration: underline;
}

/* ========================
   CTA FORM MODULE
======================== */
.cta-form-section {
    padding: var(--section-padding) 0;
}

.cta-form--dark {
    background: var(--secondary);
}

.cta-form--gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
}

.cta-form--light {
    background: #F8FAFC;
}

.cta-form--light h2,
.cta-form--light .cta-form-desc {
    color: #0F172A;
}

.cta-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-form-content h2 {
    font-size: var(--h2-size);
    margin-bottom: 16px;
}

.cta-form-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cta-form-wrapper {
    background: var(--color-background);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
    .feature-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .contact-grid,
    .confirmation-grid,
    .hero-form-grid,
    .cta-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --section-padding: 60px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .testimonial-grid,
    .pricing-grid,
    .feature-grid,
    .blog-listing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col--brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col h4,
    .footer-col .hs_cos_wrapper_type_rich_text h4 {
        text-align: center;
    }
    
    .footer .hs-menu-wrapper ul {
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer .hs-menu-wrapper li {
        list-style: none;
    }
    
    .footer .hs-menu-wrapper li::before {
        display: none;
    }
    
    .footer .hs-menu-wrapper li::marker {
        display: none;
        content: none;
    }
    
    .footer .hs_cos_wrapper_type_social_follow ul {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom p {
        text-align: center;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-background);
        border-top: 1px solid var(--color-border);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links--open {
        display: flex;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--text-white);
        cursor: pointer;
        padding: 8px;
    }
}

/* Mobile menu toggle - hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ========================
   PRO COMPARISON MODULE
======================== */
.pro-comparison-section {
    padding: var(--section-padding) 0;
}

.pro-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
    margin-top: 40px;
}

.pro-comparison-card {
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
}

.pro-comparison-card--pro {
    border-color: var(--primary);
    border-width: 2px;
}

.pro-comparison-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-comparison-card-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.pro-comparison-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--text-white);
}

.pro-comparison-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pro-comparison-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pro-comparison-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pro-comparison-card--free .pro-comparison-features svg {
    color: var(--text-muted);
}

.pro-comparison-card--pro .pro-comparison-features svg {
    color: var(--primary);
}

.pro-comparison-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.pro-comparison-cta .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.pro-comparison-footnote {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: var(--secondary);
    border-radius: var(--border-radius);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pro-comparison-footnote p {
    margin: 0;
}

/* ========================
   PRO UPGRADE GUIDE MODULE
======================== */
.pro-upgrade-guide-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-background);
}

.pro-upgrade-guide-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pro-upgrade-guide-content h2 {
    margin-bottom: 40px;
}

.pro-upgrade-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pro-upgrade-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 12px;
    background: var(--secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
}

.pro-upgrade-steps .step-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.pro-upgrade-steps .step-text {
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 6px;
}

.pro-upgrade-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    font-style: italic;
}

.pro-upgrade-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================
   PRO UPSELL TRIGGERS
======================== */
.pro-upsell-trigger {
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    background: rgba(37, 99, 235, 0.03);
}

.pro-upsell-trigger .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.pro-upsell-trigger-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pro-upsell-trigger-text svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--primary);
    opacity: 0.7;
}

.pro-upsell-trigger-links {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.pro-upsell-trigger-links a {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.pro-upsell-trigger-links a:hover {
    text-decoration: underline;
}

/* ========================
   RESPONSIVE - PRO MODULES
======================== */
@media (max-width: 768px) {
    .pro-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-comparison-cta {
        flex-direction: column;
    }
    
    .pro-comparison-cta .btn {
        width: 100%;
    }
    
    .pro-upgrade-steps li {
        flex-direction: column;
        text-align: center;
    }
    
    .pro-upgrade-steps .step-number {
        margin: 0 auto;
    }
    
    .pro-upgrade-steps .step-text {
        padding-top: 0;
        text-align: center;
    }
    
    .pro-upgrade-cta {
        flex-direction: column;
    }
    
    .pro-upgrade-cta .btn {
        width: 100%;
    }
    
    .pro-upsell-trigger .container {
        flex-direction: column;
        text-align: center;
    }
    
    .pro-upsell-trigger-text {
        justify-content: center;
    }
    
    .pro-upsell-trigger-links {
        justify-content: center;
    }
}