@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* Color Variables */
:root {
    --primary-blue: #2a81f2;
    --primary-gray: #605e5e;
    --secondary-gray: #8a8989;
    --primary-teal: #64d8c8;
    --primary-amber: #ffbe6b;
    --light-gray: #e8e8e8;
    --mid-gray: #cccccc;
    --white: #ffffff;
    --black: #000000;
    --skeleton-color: #e8e8e8;
    --sidebar-width: 220px;

    /* New gradient colors for icons */
    --gradient-blue: linear-gradient(135deg, #4a94f3, #2a81f2);
    --gradient-teal: linear-gradient(135deg, #64d8c8, #4ebcac);
    --gradient-purple: linear-gradient(135deg, #b388ff, #8c5eff);
    --gradient-green: linear-gradient(135deg, #7ed56f, #55c57a);
    --gradient-pink: linear-gradient(135deg, #ff80ab, #ff4081);
    --gradient-grey: linear-gradient(135deg, #90a4ae, #78909c);
    --gradient-orange: linear-gradient(135deg, #ffb74d, #ffa726);
    --gradient-red: linear-gradient(135deg, #f44336, #d32f2f);
    --gradient-yellow: linear-gradient(135deg, #ffeb3b, #fdd835);
    --gradient-indigo: linear-gradient(135deg, #3f51b5, #303f9f);
    --gradient-lime: linear-gradient(135deg, #cddc39, #afb42b);
    --gradient-brown: linear-gradient(135deg, #795548, #5d4037);
    --gradient-cyan: linear-gradient(135deg, #00bcd4, #0097a7);
}

body {
    background-color: #fafafa;
    font-family: 'Open Sans';
    margin: 0px;
    position: relative;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#main {
    transition-duration: 0.3s;
    font-family: 'Open Sans';
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.header {
    position: fixed;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 1000;
    transition-duration: 0.3s;
}

.footerStrip {
    width: 100%;
    background: #fafafa;
    padding: 80px 24px;
    box-sizing: border-box;
}

.homepageStripDark {
    width: 100%;
    background-color: rgba(232, 232, 232, 0.3);
    align-items: center;
    margin: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.homepageStrip {
    transition-duration: 0.3s;
    width: 100%;
    position: relative;
    align-items: center;
    padding: 20px 20px;
    margin: 0 auto;
    margin-top: 0px;
    min-height: 100px;
    max-width: 1600px;
    box-sizing: border-box;
}

#pricingCalculatorStrip {
    padding-top: 20px;
}

.homepageStrip::after {
    content: "";
    display: table;
    clear: both;
}
#strip0 {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size:
        20px 20px,
        20px 20px,
        100px 100px,
        100px 100px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    position: relative;
    max-width: none;
    padding: 40px 0 60px 0;
    overflow-x: hidden;
}

.strip-content-wrapper {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.strip-content-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

#strip0::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to bottom, #fafafa 0%, rgba(250, 250, 250, 0.8) 1%, transparent 3%),
        linear-gradient(to top, #fafafa 0%, rgba(250, 250, 250, 0.8) 1%, transparent 3%);
    z-index: 0;
}

.homepageStripLight {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    align-items: center;
    margin: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.homepageStrip2 {
    transition-duration: 0.3s;
    width: 100%;
    min-height: 50px;
    position: relative;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 30px;
    margin-top: 0px;
    min-height: 100px;
    max-width: 1400px;
    margin: auto;
    box-sizing: border-box;
}

/* Quote strip styles */
.quote-strip {
    background-color: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
}

.quote-container {
    max-width: 600px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin: 0 0 20px 0;
}

.quote-attribution {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

#strip0 .container1 {
    margin-top: 10%;
    width: 50%;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 5%;
    box-sizing: border-box;
    min-height: 300px;
}

#strip0 .container2 {
    margin-top: 30px;
    float: right;
    width: 45%;
    min-height: 550px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-right: 2%;
    box-sizing: border-box;
    overflow: visible;
}

.headerImage {
    width: 100%;
    height: auto;
}

.textContainer {
    margin-top: 10%;
    margin-left: 30%;
    margin-bottom: 10%;
    margin-right: 10%
}

.schoolImage {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 2px 0px #cccccc;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    position: fixed;
    right: 20px;
    cursor: pointer;
}

.headImage {
    width: 120px;
    height: 120px;
    box-shadow: 0 0 2px 0px #cccccc;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    display: block;
    object-fit: cover;
    margin-top: 24px;
    margin-left: 0;
}

.smmaImage {
    width: 70px;
    border-radius: 6px;
    position: absolute;
    left: 30px;
    bottom: 40px;
    cursor: pointer;
}

.content {
    margin-top: 100px;
    margin-bottom: 10px;
    margin-right: 20px;
    margin-left: 20px;
}

.homepageVideo {
    margin: auto;
    width: 800px;
    object-fit: fill;
    max-width: 90%;
    border: 10px solid #ffffff;
    border-radius: 6px;
    display: block;
    margin-bottom: 20px;
    z-index: 1;
}

.videoContainer {
    position: relative;
    margin-top: 100px
}

.videoNav {
    height: 30px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 5px 20px 5px 20px;
    background-color: #ffffff;
    position: absolute;
    top: -35px;
    display: none
}

.videoNavIconLeft {
    color: #cccccc;
    font-size: 18px;
    position: absolute;
    top: -7px;
    left: 12px;
    cursor: pointer;
}

.videoNavIconLeft:hover {
    color: #2a81f2;
}

.videoNavIconRight {
    color: #cccccc;
    font-size: 18px;
    position: absolute;
    top: -7px;
    right: 12px;
    cursor: pointer;
}

.videoNavIconRight:hover {
    color: #2a81f2;
}

.videoNavText {
    color: #605e5e;
    font-size: 14px;
    margin-left: 25px;
    font-weight: bold;
    margin-top: 6px;
}

.homepageButton1 {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(252, 252, 252, 0.98);
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s ease, border-color 0.2s ease;
    margin: 35px auto 0 auto;
    display: block;
    width: fit-content;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.homepageButton1:hover:enabled {
    filter: brightness(0.98);
    border-color: rgba(0, 0, 0, 0.2);
    color: #666;
}

.searchTagButton {
    background-color: var(--white);
    color: var(--primary-gray);
     border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    padding: 6px 10px 6px 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.searchTagButton img {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    border: 2px solid white;
}

.searchTagButton:hover {
    background-color: var(--light-gray);
}

.searchTagButton:focus {
    outline: none;
}

.searchTagButton.active {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.ha {
    border-radius: 5px;
    position: absolute;
    text-decoration: none;
    left: 5px;
    padding: 0px 10px 5px 10px;
    display: inline;
    margin: 10;
    color: #2a81f2;
    font-weight: bold;
    cursor: pointer;
}

.ha:hover {
    background-color: #e8e8e8;
}

.ha2 {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: 20px;
    color: #444;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.cc-logo {
    font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 20px;
    color: #444;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}

.openbtn {
    display: none;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    transition: opacity 0.2s ease;
    opacity: 0.6;
}

.openbtn:hover {
    opacity: 0.8;
    color: #777;
}

.openbtn .icon {
    width: 22px;
    height: 22px;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: rgba(252, 252, 252, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-dropdown.active {
    display: flex;
}

.mobile-menu-dropdown a,
.mobile-menu-dropdown button {
    padding: 10px 14px;
    color: #777;
    text-decoration: none;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.mobile-menu-dropdown a:hover,
.mobile-menu-dropdown button:hover {
    background: rgba(0, 0, 0, 0.03);
    color: #555;
}

.mobile-menu-dropdown a.current,
.mobile-menu-dropdown button.current {
    color: #999;
    pointer-events: none;
}

.mobile-menu-dropdown .mobile-menu-cta {
    background: rgba(252, 252, 252, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 600;
    margin-top: 4px;
    color: #666;
}

.mobile-menu-dropdown .mobile-menu-cta:hover {
    background: rgba(252, 252, 252, 1);
    border-color: rgba(0, 0, 0, 0.12);
    color: #555;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 4px 0;
}

.h1 {
    font-family: 'Open Sans';
    font-size: 44px;
    margin-left: 15%;
    margin-right: 15px;
    display: block;
    color: #141413;
    margin: auto;
    width: 1200px;
    max-width: 75%;
    text-align: left;
    margin-bottom: 40px;
    margin-top: 50px;
    font-weight: 900;
}

.homepageHeader {
    font-family: 'Libre Baskerville', serif;
    display: block;
    color: #222;
    margin: 0 0 35px 0;
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-weight: 400;
    font-size: clamp(32px, 7vw, 50px);
    line-height: 1.3;
    min-height: 120px;
}

.homepageHeader2 {
    font-family: 'montserrat';
    display: block;
    color: #141413;
    margin: 100px auto 60px auto;
    width: calc(100% - 80px);
    max-width: 90%;
    text-align: left;
    font-weight: 1000;
    font-size: 36px;
}

/* About page title centering */
.about-page-header {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.homepageHeader3 {
    font-family: 'montserrat';
    display: block;
    color: #605e5e;
    margin: auto;
    width: 100%;
    max-width: 90%;
    text-align: left;
    margin-bottom: 60px;
    margin-top: 50px;
    font-weight: 1000;
    font-size: 24px;
}

.homepageSectionHeader {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    display: block;
    color: #222;
    margin: 0 0 16px 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 1.75rem;
}

#productStrip > .homepageSectionHeader:first-child {
    margin-top: 100px;
}

#strip0 > .homepageSectionHeader:first-child {
    margin-top: 100px;
}

#getstartedHeaderStrip > .homepageSectionHeader:first-child {
    margin-top: 100px;
}

#faqHeaderStrip > .homepageSectionHeader:first-child {
    margin-top: 100px;
}

#pricingHeaderStrip > .homepageSectionHeader:first-child {
    margin-top: 140px;
}

.homepageSectionSubtitle {
    font-family: 'Libre Baskerville', serif;
    display: block;
    color: #555;
    margin: 0 auto 40px auto;
    max-width: 700px;
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
}

.homepageSectionHeaderLight {
    font-family: 'montserrat';
    display: block;
    color: #cccccc;
    margin: auto;
    width: 100%;
    max-width: 90%;
    text-align: left;
    margin-bottom: 15px;
    margin-top: 50px;
    font-weight: 1000;
    font-size: 24px;
}

.h2 {
    font-family: 'Open Sans';
    display: inline;
    color: #2a81f2;
    line-height: 30px;
}

.h3 {
    font-family: 'Open Sans';
    display: inline-block;
    color: #605e5e;
    margin-right: 0px;
    margin-left: 20px;
}

.sidebar {
    z-index: 100;
    height: 100%;
    box-shadow: 0 0 3px 1px #cccccc;
    width: 0px;
    position: fixed;
    background-color: #fafafa;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.sidebarMainLink {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    color: #2a81f2;
    display: block;
    border-radius: 5px;
    background-color: #fafafa;
    margin: 13px;
    padding: 5px 10px;
    cursor: pointer;
    line-height: 165%;
}

.sidebarMainLink:hover {
    background-color: #e8e8e8;
}

.sidebarGroupList {
    display: block;
}

.sidebar .closebtn {
    margin-top: 10px;
    border-radius: 5px;
    position: absolute;
    padding: 10px 7px;
    right: 5px;
    color: #2a81f2;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.sidebar .closebtn:hover {
    background-color: #e8e8e8;
}

.buttonContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 13px;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--primary-gray, #605e5e);
    background: rgba(250, 250, 250, 0.6);
    border: 2px solid rgba(240, 240, 240, 0.4);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-clip: padding-box;
    backdrop-filter: blur(8px) saturate(180%) contrast(1.01);
    -webkit-backdrop-filter: blur(8px) saturate(180%) contrast(1.01);
    box-sizing: border-box;
}

/* Ensure CTAs are right-aligned before JS restructures header */
.buttonContainer > #loginHeaderButton {
    margin-left: auto;
}

.buttonContainer::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(120% 120% at -10% -20%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0) 68%);
}

.pill-spacer {
    flex: 1 1 auto;
}

.topnav {
    display: inline-flex;
    gap: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: auto;
}

.topnav a {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #444;
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 1;
    transition: color 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
    padding: 0;
}

.topnav a:hover {
    color: #666;
    opacity: 1;
    text-decoration: none;
}

.topnav a.active,
.topnav a[aria-current="page"] {
    color: #666;
    cursor: default;
    pointer-events: none;
}

.headerButton {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.18);
    color: #444;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: inline-block;
    white-space: nowrap;
    margin-left: 10px;
}

.headerButton:hover:enabled {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.28);
    color: #666;
}

.headerButton2 {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    background: rgba(252, 252, 252, 0.98);
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s ease, border-color 0.2s ease;
    display: inline-block;
    white-space: nowrap;
    margin-left: 10px;
}

.headerButton2:hover {
    filter: brightness(0.98);
    border-color: rgba(0, 0, 0, 0.2);
    color: #666;
}

::placeholder {
    color: '#cccccc';
    opacity: 1;
}

/* Grid used for product cards */
#productStrip .flex-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

.headerCard {
    width: calc(50% - 100px);
    min-height: 160px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 15px;
    margin-left: 15px;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    padding: 10px 20px 50px 20px;
    background-color: #ffffff;
    position: relative;
    float: right;
    margin-top: -15px;
    margin-bottom: 30px;
    cursor: pointer;
}

.headerCardWide {
    width: 100%;
    min-height: 160px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 15px;
    margin-left: 15px;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    padding: 10px 20px 50px 20px;
    background-color: #ffffff;
    position: relative;
    float: right;
    margin-top: -15px;
    margin-bottom: 30px;
    cursor: pointer;
}

.headerCardIcon {
    display: inline-block;
    margin-left: 5px;
    margin-top: 10px;
    width: 70px;
    height: 70px;
}

.headerCardLink {
    display: none;
}

.headerCardLink2 {
    transition-duration: 0.3s;
    font-family: 'Open Sans';
    padding: 12px;
    width: 220px;
    border: 0.5px solid #d6d6d6;
    color: #7a75fe;
    background-color: #ffffff;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    position: absolute;
    text-align: center;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 45px);
}

.headerCardLink2:hover {
    color: #ffffff;
    background-color: #7a75fe;
    border: 1px solid #7a75fe;
}

.quoteFileCard {
    width: 340px;
    min-height: 130px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 15px;
    margin-left: 15px;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    padding: 10px 20px 15px 20px;
    background-color: #ffffff;
    position: relative;
    float: right;
}

.longTextCard {
    width: 340px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 15px;
    margin-left: 15px;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    padding: 10px 20px 15px 20px;
    background-color: #ffffff;
    position: relative;
    float: right;
    max-width: 1160px;
}

.quoteFileText {
    font-family: 'montserrat';
    color: #605e5e;
    vertical-align: top;
    font-size: 18px;
    font-weight: bold;
    margin-left: 5px;
    overflow-wrap: break-word;
    line-height: 180%;
    white-space: pre-wrap;
    margin-top: -8px;

}

.quoteFileText2 {
    color: #605e5e;
    vertical-align: bottom;
    font-size: 14px;
    margin-left: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre-wrap;
    margin-right: 10px;
    line-height: 180%;
}

.productCard {
    min-height: 300px;
    margin: 0;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 24px 28px 5px 28px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

.product-card-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.productCard:hover .product-card-arrow {
    color: rgba(0, 0, 0, 0.5);
}

.product-card-non-clickable {
    cursor: default;
}

.product-card-non-clickable:hover {
    cursor: default;
}

/* Curriculum landing page features grid */
#productStrip .curriculum-features-grid {
    grid-template-columns: repeat(3, 1fr);
}

#productStrip .curriculum-features-grid .productCard {
    min-height: 0;
    padding: 20px 24px;
    cursor: default;
    grid-template-columns: 1fr;
    gap: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#productStrip .curriculum-features-grid .productCard:nth-child(3n) {
    border-right: none;
}

#productStrip .curriculum-features-grid .productCard:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Remove right border on every 2nd column */
.productCard:nth-child(2n) {
    border-right: none;
}

/* Remove bottom border on last row */
.productCard:nth-last-child(-n+2) {
    border-bottom: none;
}

.product-pill {
    display: inline-block;
    width: 24px;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.product-pill-centered {
    display: block;
    margin: 0 auto 16px auto;
}

.feature-page-header-strip {
    margin-top: 100px;
}

.product-content-left {
    display: flex;
    flex-direction: column;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.product-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
}

/* Features Grid (for system pages like maps) */
#featuresStrip {
    padding-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
}

/* Features Pairs Grid (for pages with feature-video pairs like data tracking) */
.features-pairs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    row-gap: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.feature-video-pair-cell {
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin: 0;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 0;
    background-color: transparent;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.feature-video-pair-cell .feature-card {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
    padding: 32px 28px 0 28px;
    display: flex;
    flex-direction: column;
}

.feature-video-pair-cell .product-pill {
    margin-bottom: 12px;
}

.feature-video-pair-cell .productText1Container {
    margin: 0 0 12px 0;
}

.feature-video-pair-cell .productText2 {
    margin-bottom: 0;
    
}

.feature-video-pair-cell .feature-video-cell {
    border: none;
    margin: 0;
    margin-bottom: 32px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.feature-video-pair-cell .feature-video {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.feature-card,
.feature-image-cell,
.feature-video-cell {
    min-height: 200px;
    margin: 0;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 32px 28px;
    background-color: transparent;
    position: relative;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-image-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: transparent;
    aspect-ratio: 16 / 10;
}

.feature-image-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.feature-image-cell img:hover {
    opacity: 0.9;
}

/* Image Modal/Lightbox Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.image-modal-close i {
    pointer-events: none;
}

.feature-video-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #000;
}

.feature-video {
    width: 100%;
    height: auto;
    min-height: 200px;
    display: block;
}

/* Remove right border on every 3rd column */
.feature-card:nth-child(3n),
.feature-image-cell:nth-child(3n),
.feature-video-cell:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border on last row */
.feature-card:nth-last-child(-n+3),
.feature-image-cell:nth-last-child(-n+3),
.feature-video-cell:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Remove right border on every 3rd column for pairs grid */
.features-pairs-grid .feature-video-pair-cell:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border on last row for pairs grid */
.features-pairs-grid .feature-video-pair-cell:nth-last-child(-n+3) {
    border-bottom: none;
    margin-bottom: 0;
}

.productCard2 {
    width: 340px;
    min-height: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 15px;
    margin-left: 15px;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    padding: 10px 20px 15px 20px;
    background-color: #ffffff;
    position: relative;
    float: right;
    margin-bottom: 15px;
    margin-top: 25px;
}

.productCard3 {
    width: 340px;
    min-height: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 15px;
    margin-left: 15px;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    padding: 10px 20px 15px 20px;
    background-color: #ffffff;
    position: relative;
    float: right;
    margin-bottom: 15px;
    margin-top: 25px;
    cursor: pointer;
}

.productCard3:hover {
    border: 0.5px solid #d6d6d6;
}

.productIcon {
    display: none;
}

.productText1Container {
    width: 100%;
    display: block;
    margin: 0 0 12px 0;
}

.productText1 {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    color: #222;
    font-size: 1rem;
    font-weight: 700;
    overflow-wrap: break-word;
    line-height: 1.4;
    white-space: normal;
    margin: 0;
}

.productText2 {
    font-family: 'Libre Baskerville', serif;
    color: #555;
    font-size: 0.875rem;
    margin: 0 0 16px 0;
    overflow-wrap: break-word;
    line-height: 1.6;
    white-space: normal;
    font-weight: 400;
}

.productText3 {
    font-family: 'montserrat';
    color: #605e5e;
    vertical-align: top;
    font-size: 14px;
    font-weight: bold;
    overflow-wrap: break-word;
    line-height: 165%;
    white-space: pre-wrap;
    margin-left: 5px;
    margin-bottom: 10px;
    margin-top: 35px;
}

.productLink {
    transition-duration: 0.3s;
    font-family: 'Open Sans';
    padding: 12px;
    width: 220px;
    border: 1px solid #2a81f2;
    color: #ffffff;
    background-color: #2a81f2;
    font-size: 14px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    position: absolute;
    text-align: center;
    margin-top: 30px;
    bottom: 35px;
    left: calc(15% - 10px);
    width: 70%;
}

.contactBox {
    width: 100%;
    max-width: 900px;
    min-height: 300px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.contactText1 {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    color: #222;
    vertical-align: top;
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 0;
    overflow-wrap: break-word;
    line-height: 1.4;
    white-space: pre-wrap;
    margin-bottom: 12px;
    text-align: center;
}

.contactText2 {
    font-family: 'Libre Baskerville', serif;
    color: #555;
    vertical-align: top;
    font-size: 0.95rem;
    margin-left: 0;
    overflow-wrap: break-word;
    line-height: 1.6;
    white-space: pre-wrap;
    margin-bottom: 20px;
    text-align: center;
}

.contactText3 {
    color: #605e5e;
    vertical-align: top;
    font-size: 14px;
    margin-left: 105px;
    overflow-wrap: break-word;
    line-height: 165%;
    white-space: pre-wrap;
    margin-bottom: 25px;
    width: calc(90% - 80px)
}

.contactFormBox {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    padding-bottom: 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.contactFormBox:focus-within {
    outline: none;
    border-color: rgba(0, 0, 0, 0.18);
}

.helpInput {
    font-family: 'Open Sans';
    padding: 9px 10px 7px 10px;
    border: 0.5px solid #d6d6d6;
    font-size: 14px;
    border-radius: 6px;
    color: #605e5e;
    padding: 12px 20px;
    width: 70%;
    margin-bottom: 20px;
    margin-left: 15px
}

.helpInput:hover {
    box-shadow: 0 0 3px 1px #cccccc;
    border: 0.5px solid #d6d6d6;
    outline: none;
}

.helpInput:focus {
    box-shadow: 0 0 0 2px rgba(108, 166, 247, 1);
    border: 0.5px solid #d6d6d6;
    outline: none;
}

.searchTagContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: left;
    margin-top: 20px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.contactInput {
    font-family: 'Libre Baskerville', serif;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: #222;
    transition: border-color 0.2s ease;
    margin-bottom: 0;
}

.contactInput:hover {
    border-bottom-color: rgba(0, 0, 0, 0.12);
}

.contactInput:focus {
    outline: none;
    border-bottom-color: rgba(0, 0, 0, 0.16);
}

.contactInput::placeholder {
    color: #999;
}

.contactTextArea {
    font-family: 'Libre Baskerville', serif;
    width: 100%;
    padding: 12px 0;
    padding-top: 12px;
    background: transparent;
    border: none;
    border-bottom: none;
    font-size: 0.9rem;
    color: #222;
    transition: border-color 0.2s ease;
    resize: none;
    min-height: 100px;
    margin-bottom: 0;
}

.contactTextArea:hover {
    outline: none;
}

.contactTextArea:focus {
    outline: none;
}

.contactTextArea::placeholder {
    color: #999;
}

.contactButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(252, 252, 252, 0.98);
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 6px 12px;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: filter 0.2s ease, border-color 0.2s ease;
    margin-top: 8px;
    align-self: flex-end;
}

.contactButton:hover:enabled {
    filter: brightness(0.98);
    border-color: rgba(0, 0, 0, 0.2);
    color: #666;
}

.contactButton:disabled {
    opacity: 0.5;
    cursor: default;
}

.aboutText {
    margin-top: 0;
    color: #605e5e;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    margin-bottom: 32px;
    margin-left: 0;
    text-align: left;
}

.h0 {
    font-size: 55px;
    margin-left: 5px;
    margin-top: 5px;
    margin-bottom: 0px;
    display: block;
    color: #2a81f2;
    margin-right: 0px;
    font-weight: bold;
    cursor: pointer;
}

.betaText {
    font-size: 12px;
    position: absolute;
    color: #ffffff;
    background-color: #2a81f2;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    right: 8px;
    top: -5px
}

/* Thank You Modal Styles */
.thank-you-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.thank-you-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 40px;
    border-radius: 10px;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    color: #222;
    background: rgba(252, 252, 252, 0.98);
    background-clip: padding-box;
    backdrop-filter: blur(12px) saturate(180%) contrast(1.01);
    -webkit-backdrop-filter: blur(12px) saturate(180%) contrast(1.01);
    box-sizing: border-box;
    max-width: 500px;
    width: 100%;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.thank-you-modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(120% 120% at -10% -20%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0) 68%);
}

.thank-you-check-icon {
    color: #06bf00;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 8px;
}

.thank-you-heading {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
}

.thank-you-message {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
}

/* Legacy tick modal styles (kept for backward compatibility) */
.tickModal {
    top: 0px;
    left: 0px;
    display: block;
    position: fixed;
    z-index: 1000;
    padding-top: 200px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
}

.tickBox {
    vertical-align: top;
    height: 120px;
    width: 160px;
    border-radius: 5px;
    border: 0.5px solid #d6d6d6;
    background-color: #ffffff;
    margin: auto;
}

.tickIcon {
    color: #06bf00;
    font-size: 100px;
    text-align: center;
    width: 100%;
    line-height: 100%;
    margin-top: 10px;
}

.footer-glass {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    border-radius: 13px;
    font-family: 'Libre Baskerville', serif;
    color: #444;
    background: rgba(248, 248, 248, 0.5);
    border: 2px solid rgba(240, 240, 240, 0.4);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background-clip: padding-box;
    backdrop-filter: blur(6px) saturate(180%) contrast(1.01);
    -webkit-backdrop-filter: blur(6px) saturate(180%) contrast(1.01);
    box-sizing: border-box;
    max-width: 100%;
}

/* Footer brand (left section) */
.footer-brand {
}

.footer-brand .ha2 {
    font-size: 1.35rem; /* slightly larger for footer brand */
}

.footer-cyber-logo {
    width: 23%;
    height: auto;
    object-fit: contain;
    opacity: 0.9; /* still discrete */
}

.footer-copyright-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.75rem;
    color: #777;
    margin-top: 20px;
}

.footer-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(120% 120% at -10% -20%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0) 68%);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerText {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    color: #444;
    font-size: 0.9rem;
    font-weight: 700;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    display: block;
    margin-bottom: 6px;
}

.footerLink {
    font-family: 'Libre Baskerville', serif;
    color: #555;
    font-size: 0.85rem;
    overflow-wrap: break-word;
    line-height: 1.6;
    white-space: pre-wrap;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footerLink:hover {
    color: #777;
}

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #777;
    font-weight: 400;
    padding-top: 20px;
    font-family: 'Libre Baskerville', serif;
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .footer-section {
        align-items: flex-start;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10000;
    max-width: 400px;
    animation: cookieBannerSlideIn 0.3s ease-out;
    }

@keyframes cookieBannerSlideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cookieBannerSlideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
    }

.cookie-banner-glass {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 13px;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    color: #222;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    }

.cookie-banner-glass::before {
        display: none;
    }

.cookie-banner-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #444;
    font-weight: 400;
    }

.cookie-banner-link {
    color: #444;
    text-decoration: underline;
    text-decoration-color: rgba(68, 68, 68, 0.4);
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
    cursor: pointer;
    }

.cookie-banner-link:hover {
    color: #666;
    text-decoration-color: rgba(102, 102, 102, 0.6);
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.cookie-banner-btn {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    }

.cookie-banner-btn-accept {
    background: #222;
    color: #fff;
    }

.cookie-banner-btn-accept:hover {
    background: #333;
    }

.cookie-banner-btn-reject {
    background: rgba(255, 255, 255, 0.9);
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.12);
    }

.cookie-banner-btn-reject:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.2);
    }

/* Pricing Calculator Styles */
#pricingCalculatorStrip {
    padding-top: 20px;
    }

#pricingCalculatorStrip {
    margin-top: 25px;
}

/* FAQ page: add spacing above contact section only when on FAQ */
#faqHeaderStrip ~ #formStrip {
    margin-top: 25px;
}

.pricing-calculator-container {
        width: 100%;
    max-width: 900px;
    margin: 0 auto;
    }

.pricing-calculator-header {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px 0;
    text-align: center;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.pricing-calculator-subtitle {
    font-family: 'Libre Baskerville', serif;
    color: #555;
    font-size: 0.95rem;
    margin: 0 0 20px 0;
    overflow-wrap: break-word;
    line-height: 1.6;
    text-align: center;
    }

.pricing-calculator-box {
    position: relative;
    padding: 20px;
    padding-bottom: 24px;
    border-radius: 12px;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    color: #222;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    max-width: 1000px;
    margin: auto;
    box-sizing: border-box;
    margin-bottom: 40px;
}


.pricing-inputs-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
    }

.pricing-input-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    }

.pricing-input-label {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    }

.pricing-input {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    padding: 10px 14px;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333;
    background-color: #ffffff;
    transition: all 0.2s ease;
        width: 100%;
    box-sizing: border-box;
    }

.pricing-input:hover {
    box-shadow: 0 0 3px 1px #cccccc;
    border: 0.5px solid #d6d6d6;
    outline: none;
    }

.pricing-input:focus {
    box-shadow: 0 0 0 2px rgba(108, 166, 247, 1);
    border: 0.5px solid #d6d6d6;
    outline: none;
    }

.pricing-result-section {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pricing-result-label {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    }

.pricing-result-amount {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    }

.pricing-breakdown {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
    }

.breakdown-line {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
    }

.breakdown-subtotal {
    font-weight: 600;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

.breakdown-vat {
    font-weight: 600;
    color: #444;
}

.included-systems-section {
    margin-top: 40px;
    }

.included-systems-header {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px 0;
    text-align: center;
}

.included-systems-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
    }

.included-system-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #444;
    }

.included-system-check {
    color: #06bf00;
    font-size: 1rem;
    flex-shrink: 0;
    }

.included-system-name {
    line-height: 1.5;
}

.pricing-input-hint {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.8rem;
    color: #777;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .pricing-inputs-section {
        grid-template-columns: 1fr;
    }

    .pricing-result-amount {
        font-size: 1.4rem;
    }

    .included-systems-list {
        grid-template-columns: 1fr;
    }
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    }

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px #cccccc;
    border-radius: 6px;
    }

::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}

/* Mobile - up to 768px */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        padding: 0;
    }

    .cookie-banner-glass {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .thank-you-modal-content {
        padding: 36px 28px;
        max-width: 90%;
        margin: 0 20px;
    }

    .thank-you-heading {
        font-size: 1.35rem;
    }

    .thank-you-message {
        font-size: 0.95rem;
    }

    .thank-you-check-icon {
        font-size: 56px;
    }

    .topnav,
    .nav-actions {
        display: none;
    }

    .openbtn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hide raw header buttons on mobile until JS builds nav-actions/ellipsis */
    .buttonContainer > #loginHeaderButton,
    .buttonContainer > #getStartedHeaderButton {
        display: none;
    }


    .header {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    #strip0 .container1 {
        margin-top: 140px;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        float: none;
        min-height: auto;
    }

    .homepageHeader {
        min-height: auto;
    }

    #strip0 .container2 {
        display: flex;
        width: 50%;
        margin-top: 40px;
        padding-right: 0;
        overflow: hidden;
    }
    
    .header-image-main {
        width: 600px;
    }
    
    .header-image-overlap {
        width: 390px;
        right: -30px;
    }

    #productStrip .flex-container {
        grid-template-columns: 1fr;
    }

    .productCard {
        border-right: none;
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 45px;
    }

    .productCard:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .productCard:last-child {
        border-bottom: none;
    }

    .product-image-container {
        aspect-ratio: 16 / 9;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-pairs-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-image-cell,
    .feature-video-cell {
        border-right: none;
    }

    .feature-card:nth-last-child(-n+3),
    .feature-image-cell:nth-last-child(-n+3),
    .feature-video-cell:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .feature-card:last-child,
    .feature-image-cell:last-child,
    .feature-video-cell:last-child {
        border-bottom: none;
    }

    .features-pairs-grid .feature-video-pair-cell {
        border-right: none;
    }

    .features-pairs-grid .feature-video-pair-cell:last-child {
        border-bottom: none;
    }

    .quoteFileCard,
    .longTextCard {
        width: 100%;
    }

    .headerButton2 {
        display: none;
    }

    /* Curriculum grid: 1 column on mobile */
    #productStrip .curriculum-features-grid {
        grid-template-columns: 1fr;
    }

    #productStrip .curriculum-features-grid .productCard {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    #productStrip .curriculum-features-grid .productCard:last-child {
        border-bottom: none;
    }
}

/* Tablet - 769px and up */
@media (min-width: 769px) {
    .header {
        top: 24px;
        left: 24px;
        right: 24px;
    }

    #strip0 {
        padding-top: 90px;
    }

    #strip0 .container1 {
        margin-top: 140px;
        width: 100%;
        padding: 0 40px;
        box-sizing: border-box;
        float: none;
        min-height: auto;
    }

    .homepageHeader {
        min-height: auto;
    }

    #strip0 .container2 {
        display: flex;
        width: 48%;
        overflow: hidden;
    }
    
    .header-image-main {
        width: 675px;
    }
    
    .header-image-overlap {
        width: 435px;
        right: -35px;
    }

    #productStrip .flex-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .productCard:nth-child(2n) {
        border-right: none;
    }

    .productCard:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-pairs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .included-systems-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(2n),
    .feature-image-cell:nth-child(2n),
    .feature-video-cell:nth-child(2n) {
        border-right: none;
    }

    .feature-card:nth-child(3n),
    .feature-image-cell:nth-child(3n),
    .feature-video-cell:nth-child(3n) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .feature-card:nth-last-child(-n+2),
    .feature-image-cell:nth-last-child(-n+2),
    .feature-video-cell:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .features-pairs-grid .feature-video-pair-cell:nth-child(3n) {
        border-right: none;
    }

    .features-pairs-grid .feature-video-pair-cell:nth-last-child(-n+3) {
        border-bottom: none;
    }

    /* Curriculum grid: 3 columns on tablet+ */
    #productStrip .curriculum-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #productStrip .curriculum-features-grid .productCard {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    #productStrip .curriculum-features-grid .productCard:nth-child(3n) {
        border-right: none;
    }

    #productStrip .curriculum-features-grid .productCard:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
    #strip0 {
        padding-top: 90px;
    }

    #strip0 .container1 {
        margin-top: 100px;
        width: 50%;
        padding-left: 5%;
        float: left;
    }

    #strip0 .container2 {
        width: 45%;
        height: 550px;
        display: flex;
        margin-top: -20px;
        padding-right: 2%;
        overflow: visible;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-pairs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .included-systems-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card:nth-child(2n),
    .feature-image-cell:nth-child(2n),
    .feature-video-cell:nth-child(2n) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .feature-card:nth-child(3n),
    .feature-image-cell:nth-child(3n),
    .feature-video-cell:nth-child(3n) {
        border-right: none;
    }

    .feature-card:nth-last-child(-n+3),
    .feature-image-cell:nth-last-child(-n+3),
    .feature-video-cell:nth-last-child(-n+3) {
        border-bottom: none;
    }

    .features-pairs-grid .feature-video-pair-cell:nth-child(3n) {
        border-right: none;
    }

    .features-pairs-grid .feature-video-pair-cell:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

/* Typing Animation Styles */
.gradient-blue,
.gradient-teal,
.gradient-purple,
.gradient-orange,
.gradient-green {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    color: #444;
}

/* New shared emphasis for typed words (used on homepage and trusts) */
.typing-emphasis {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    color: #444;
}

.cursor {
    display: inline-block;
    color: #cccccc;
    font-weight: normal;
    margin-left: 1px;
    animation: blink 1s infinite;
    font-family: monospace;
    font-size: 1.2em;
    line-height: 1;
    transform: scaleX(0.6);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Hide homepage header images on narrower screens where title is full width */
@media (max-width: 1023px) {
    #strip0 .container2 {
        display: none;
    }
    .header-image-main,
    .header-image-overlap {
        display: none;
    }
}

#typing-container {
    display: inline-block;
    white-space: pre;
}

.header-image-placeholder {
    background: #f0f0f0;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-image-main {
    width: 750px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    display: block;
}

.header-image-overlap {
    width: 480px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    position: absolute;
    bottom: -10px;
    right: -20px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image-container .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

#carouselImage {
    max-width: 1400px;
    width: 95%;
    border: 0.5px solid #d6d6d6;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

#uiCarouselStrip {
    padding-top: 5px;
}

/* FAQ styles */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background: var(--color-bg-primary, #fff);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #222;
    cursor: pointer;
}

.faq-question .icon {
    transition: transform 0.2s ease;
}

.faq-item.open .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 16px 16px 16px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.faq-item.open .faq-answer {
    display: block;
}