* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #FF6B35;
    --orange-dark: #E55A2B;
    --navy-primary: #1A1A1A;
    --navy-medium: #2C3E50;
    --white: #FFFFFF;
    --gray-ultra-light: #FAFAFA;
    --shadow-strong: 0 8px 32px rgba(26, 26, 26, 0.2);
    --shadow-subtle: 0 4px 16px rgba(26, 26, 26, 0.1);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--navy-primary);
    background: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* High Contrast Typography System */
.text-massive {
    font-size: clamp(2.1rem, 5.6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-hero {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.text-section {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.text-large {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

.text-body {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

.text-small {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

/* High Contrast Color Classes */
.bg-orange { background-color: var(--orange-primary); }
.bg-navy { background-color: var(--navy-primary); }
.bg-white { background-color: var(--white); }
.bg-gray { background-color: var(--gray-ultra-light); }

.text-orange { color: var(--orange-primary); }
.text-navy { color: var(--navy-primary); }
.text-white { color: var(--white); }

/* Navigation - Maximum Contrast */
.nav-monochrome {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--orange-primary);
    padding: 1rem 0;
}

/* Mobile Navigation Actions */
.mobile-nav-actions {
    display: none !important;
    align-items: center;
    gap: 0.75rem;
}

.mobile-demo-btn {
    background: var(--navy-primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    position: relative;
    z-index: 100;
    flex-shrink: 0;
}

.mobile-demo-btn:hover {
    background: #333;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy-primary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    padding: 1rem 0;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.mobile-nav-links a:hover {
    background-color: var(--gray-ultra-light);
}

.mobile-nav-cta {
    background: var(--orange-primary) !important;
    color: var(--white) !important;
    margin: 1rem 1.5rem;
    padding: 1rem !important;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.mobile-nav-dropdown {
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-content {
    background: var(--gray-ultra-light);
}

.mobile-dropdown-content a {
    padding-left: 3rem;
    font-size: 0.9rem;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-contrast {
    height: 50px;
    width: auto;
    filter: contrast(1.2) saturate(1.1);
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.nav-links a.nav-cta-contrast {
    background: var(--navy-primary) !important;
    color: var(--white) !important;
    padding: 1rem 2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 3px solid var(--navy-primary);
}

.nav-links a.nav-cta-contrast:hover {
    background: var(--white) !important;
    color: var(--navy-primary) !important;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background: var(--navy-primary);
    min-width: 200px;
    box-shadow: var(--shadow-strong);
    z-index: 1001;
    top: 100%;
    left: 0;
    border: 3px solid var(--white);
}

.nav-dropdown-content a {
    color: var(--white) !important;
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.nav-dropdown-content a:last-child {
    border-bottom: none;
}

.nav-dropdown-content a:hover {
    background: var(--orange-primary) !important;
    color: var(--navy-primary) !important;
    border-bottom-color: transparent !important;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

/* Hero Section - Angled Orange Design */
.hero-monochrome {
    margin-top: 0;
    padding-top: 8rem;            
    background: var(--orange-primary);
    position: relative;            
    width: 100vw;
    margin-left: calc(50% - 50vw);  
    margin-bottom: 16rem;          
}

/* Hero Experience Statement */
.hero-experience {
    margin-top: 0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-monochrome::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -50%;
    right: -50%;
    top: 60%;
    transform: rotate(-8deg) skew(-8deg);
    background: var(--orange-primary);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-headline {
    margin-bottom: 2rem;
}

.hero-headline .text-massive {
    color: var(--navy-primary);
    display: block;
    font-weight: 600; /* Reduced from 800 */
}

.hero-headline .text-orange {
    display: block;
    margin-top: -0.5rem;
    color: var(--navy-primary);
}

.hero-description {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-contrast {
    background: var(--navy-primary);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 3px solid var(--navy-primary);
    font-size: 1.125rem;
}

.btn-primary-contrast:hover {
    background: var(--white);
    color: var(--navy-primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary-contrast {
    background: transparent;
    color: var(--navy-primary);
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid var(--navy-primary);
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.btn-secondary-contrast:hover {
    background: var(--navy-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: contrast(1.1) saturate(1.1);
}

.hero-image svg {
    width: 100%;
    height: auto;
    max-width: 800px;
}

/* Scheduled Plans Demo Video Section */
.scheduled-plans-demo {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 10;
    clear: both;
    display: block;
    margin-bottom: 9rem
}

.scheduled-plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.scheduled-plans-header {
    margin-bottom: 3rem;
}

.scheduled-plans-header h2 {
    margin-bottom: 1rem;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.demo-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    background: var(--white);
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
    cursor: pointer;
}

.demo-video.playing {
    filter: none;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-overlay:hover {
    background: var(--orange-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-icon {
    width: 0;
    height: 0;
    border-left: 25px solid var(--white);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .scheduled-plans-demo {
        padding: 4rem 0;
    }
    
    .scheduled-plans-container {
        padding: 0 1rem;
    }
    
    .video-container {
        max-width: 100%;
    }
}

/* Value Props - White Background */
.value-props {
    margin-top: 0rem;
    padding: 3rem 0 6rem;
    margin-top: -10rem;
    background: var(--white);
    color: var(--navy-primary);
}

.value-props-cards-only {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.value-props-placeholder-standalone {
    width: 100%;
    max-width: 800px;
    height: 500px;
    background: var(--gray-ultra-light);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    padding: 15px;
    box-sizing: border-box;
    color: var(--navy-primary);
}

.value-props-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-props-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.value-props-left {
    flex: 2;
}

.value-props-text {
    vertical-align: top;
    flex: 1;
    text-align: left;
    align-self: flex-start;
}

.value-props-text .text-section {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.underlined-orange {
    color: var(--navy-primary);
    position: relative;
    display: inline;
    white-space: nowrap;
}

.underlined-orange::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange-primary);
}

/* Highlighted text effect */
.highlighted-orange {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.highlighted-orange::before {
    content: '';
    position: absolute;
    left: -0.1em;
    right: -0.1em;
    top: 0.35em;
    bottom: 0.05em;
    background: var(--orange-primary);
    opacity: 0.3;
    transform: skewY(-1deg) rotate(-0.5deg);
    border-radius: 3px 3px 2px 2px;
    z-index: -1;
}

/* Thinner underline variant for smaller text */
.underlined-orange-thin {
    color: var(--navy-primary);
    position: relative;
    display: inline;
    white-space: nowrap;
}

.underlined-orange-thin::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--orange-primary);
}

.value-props-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gray-ultra-light);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    padding: 15px;
    box-sizing: border-box;
    color: var(--navy-primary);
    font-weight: 600;
    overflow: hidden;
}

.document-thumbnail {
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.document-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.document-thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.document-thumbnail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange-primary);
}

.document-title {
    font-size: 0.6rem;
    color: var(--navy-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    word-break: break-word;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.value-prop-item {
    display: flex;
    flex-direction: column;
}

.value-prop-card {
    background: var(--white);
    color: var(--navy-primary);
    padding: 2rem;
    margin-top: 0;
    z-index: 2;
    position: relative;
}

.value-prop-image {
    width: 100%;
    height: 350px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.value-prop-image:hover {
    transform: scale(1.02);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
    transition: transform 0.3s ease;
    border: 2px solid var(--navy-primary);
    box-sizing: border-box;
}

.value-prop-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
    animation: fadeIn 0.3s;
}

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

.lightbox-content {
    display: block;
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--orange-primary);
    text-decoration: none;
}

.lightbox-caption {
    color: #ccc;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 90%;
    }
}

/* Features - Contrasting Sections */
.features-monochrome {
    padding: 6rem 0;
    background: var(--white);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.features-grid:nth-child(even) {
    direction: rtl;
}

.features-grid:nth-child(even) > * {
    direction: ltr;
}

.feature-content {
    padding: 2rem;
}

.feature-list {
    margin-top: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--navy-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-list li::before {
    content: '•';
    color: var(--orange-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-visual {
    background: var(--gray-ultra-light);
    padding: 0;
    border: 4px solid var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.feature-visual:hover {
    transform: scale(1.02);
}

.feature-visual img {
    width: 150%;
    height: 150%;
    object-fit: cover;
    object-position: top left;
    position: absolute;
    top: 0;
    left: 0;
    filter: contrast(1.2);
    transition: transform 0.3s ease;
}

/* Pricing - Maximum Contrast */
.pricing-monochrome {
    padding: 6rem 0;
    background: var(--gray-ultra-light);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 4px solid var(--navy-primary);
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--orange-primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

.pricing-header-card {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--navy-primary);
}

.pricing-card.featured .pricing-header-card {
    border-bottom-color: var(--orange-primary);
}

.pricing-price {
    color: var(--orange-primary);
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.pricing-features li:before {
    content: '✓';
    color: var(--orange-primary);
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.pricing-cta {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

/* Integrations Section */
.integrations-section {
    padding: 6rem 0;
    background: var(--white);
    color: var(--navy-primary);
    overflow-x: hidden;
}

.integrations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    overflow-x: hidden;
}

.integrations-header {
    margin-bottom: 4rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    place-content: center;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .integrations-container {
        padding: 0 1rem;
    }
    
    .integrations-section {
        padding: 4rem 0;
    }
}

.integration-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    margin: 0.25rem;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    object-fit: contain;
}

.integration-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .integration-logo {
        height: 35px;
        margin: 0.2rem;
    }
}

@media (max-width: 480px) {
    .integration-logo {
        height: 30px;
        margin: 0.1rem;
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 6rem 0;
    background: var(--gray-ultra-light);
    color: var(--navy-primary);
}

.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 4rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-card-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.case-study-card {
    background: var(--white);
    border: 4px solid var(--navy-primary);
    transition: all 0.3s ease;
    overflow: hidden;
}

.case-study-card-link:hover .case-study-card {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--orange-primary);
}

.case-study-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.case-study-content p {
    margin-bottom: 1.5rem;
    color: var(--navy-primary);
}

.case-study-card-link .case-study-content h3,
.case-study-card-link .case-study-content p {
    color: var(--navy-primary);
}

.case-study-card-link:hover .case-study-content h3,
.case-study-card-link:hover .case-study-content p {
    color: var(--navy-primary);
}

.case-study-quote {
    background: var(--gray-ultra-light);
    border-left: 4px solid var(--orange-primary);
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--navy-primary);
}

.case-study-card-link .case-study-quote {
    color: var(--navy-primary);
}

.case-study-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.case-study-card-link .case-study-link {
    color: var(--orange-primary);
}

.case-study-card-link:hover .case-study-link {
    color: var(--navy-primary);
    text-decoration: underline;
}

/* Demo Form - High Contrast */
.demo-form-section {
    padding: 6rem 0;
    background: var(--navy-primary);
    color: var(--white);
}

.demo-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.demo-form {
    background: var(--white);
    color: var(--navy-primary);
    padding: 3rem;
    border: 4px solid var(--orange-primary);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--navy-primary);
    background: var(--white);
    color: var(--navy-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

/* Inquiry type buttons */
.inquiry-type-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.inquiry-btn {
    flex: 1;
    padding: 1rem;
    border: 3px solid var(--navy-primary);
    background: var(--white);
    color: var(--navy-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.inquiry-btn:hover {
    background: var(--navy-primary);
    color: var(--white);
}

.inquiry-btn.active {
    background: var(--orange-primary);
    color: var(--white);
    border-color: var(--orange-primary);
}

/* Accordion styles */
.optional-accordion {
    margin-bottom: 2rem;
}

.accordion-toggle {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--navy-primary);
    background: var(--white);
    color: var(--navy-primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.accordion-toggle:hover {
    background: var(--gray-light);
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-content {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-top: none;
    background: var(--gray-light);
}

/* Footer - Maximum Contrast */
.footer-monochrome {
    background: var(--navy-primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--orange-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--orange-primary);
}

.footer-text-muted {
    opacity: 0.5;
}

.footer-bottom {
    border-top: 3px solid var(--orange-primary);
    padding-top: 2rem;
    text-align: center;
}

/* Medium Viewport Adjustments */
@media (max-width: 1160px) and (min-width: 769px) {
    .text-massive {
        line-height: 1.3;
        letter-spacing: -0.01em;
    }
    
    .hero-monochrome {
        padding: 9rem 0 6rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-content {
        order: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .text-massive {
        font-size: clamp(2rem, 6vw, 3.5rem);
        line-height: 1.4;
        letter-spacing: 0;
    }
    
    .hero-monochrome {
        padding: 7rem 0 4rem;
        margin-bottom: 0rem;
    }
    
    .nav-container {
        max-width: 100%;
        padding: 0 1rem;
        min-height: 60px;
        overflow: visible;
        position: relative;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav-actions {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        flex-shrink: 0;
        position: relative;
        z-index: 10;
    }
    
    .hamburger-menu {
        display: flex !important;
    }

    .hero-monochrome
    {
     overflow-x: hidden;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
       
    }
    
    /* Put hero content first, image after on mobile */
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        display: flex;
        margin-top: 2rem;
    }
    
    .hero-visual .hero-image {
        width: 120%;
        max-width: 120%;
        transform: scale(1.2);
        overflow: hidden;
    }
    
    .hero-visual .hero-image svg {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .hero-monochrome::after {
        left: -20%;
        right: -20%;
        top: 60%;
        transform: rotate(-6deg) skew(-6deg);
    }
    
    /* Value props responsive - text above image */
    .value-props-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .value-props-text {
        order: 1;
        text-align: center;
    }
    
    .value-props-left {
        order: 2;
    }
    
    .value-props-placeholder {
        max-width: 100%;
        height: 300px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

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

    .features-grid:nth-child(even) {
        direction: ltr;
    }
    
    /* Value prop items - text above images */
    .value-prop-item {
        flex-direction: column-reverse;
    }
    
    .value-prop-card {
        order: 1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .value-prop-image {
        order: 2;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .hero-experience {
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    .hero-experience .years-text {
        display: none;
    }
    
    .hero-experience::after {
        content: "6 years supporting Australian schools with NCCD data collection and compliance.";
    }
    

    .btn-primary-contrast,
    .btn-secondary-contrast {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-card {
        border-width: 3px;
    }
}

/* Privacy Policy & Data Security Styles */
.privacy-policy {
    padding: 6rem 0;
    background: var(--white);
    color: var(--navy-primary);
    margin-top: 100px; /* Account for fixed navigation */
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-content {
    margin-top: 3rem;
}

.privacy-content h1 {
    margin-bottom: 0.5rem;
}

.privacy-content h2 {
    color: var(--navy-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.privacy-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.privacy-content h3 {
    color: var(--navy-primary);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.privacy-content p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 3rem;
    list-style: none;
}

.privacy-content li {
    color: var(--gray-text);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    position: relative;
    padding-left: 0.5rem;
    font-size: 1.0625rem;
}

.privacy-content li::before {
    content: '•';
    color: var(--orange-primary);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: -2rem;
    top: -0.2rem;
}

.privacy-content li strong {
    color: var(--navy-primary);
    font-weight: 600;
}

/* Security Image */
.security-image {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    display: inline-block;
}

.security-image img {
    max-width: 280px;
    height: auto;
}

/* Security Services Row */
.security-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: center;
}

.security-services img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.security-services img:hover {
    filter: grayscale(0);
}

/* Firebase service - separate from grey background */
.firebase-service {
    margin: 2rem 0 1rem 0;
}

.firebase-service img {
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* Google Cloud services with grey background */
.security-services-grey {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1rem 0 2rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    align-items: center;
}

.security-services-grey img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.security-services-grey img:hover {
    filter: grayscale(0);
}

/* Legacy styles for backward compatibility */
.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.privacy-section h3 {
    color: var(--navy-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.privacy-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
}

.privacy-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.privacy-list li::before {
    content: '•';
    color: var(--orange-primary);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.text-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.text-link:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

.text-body-bold {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.text-subsection {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

/* Leverage Existing Resources Section */
.leverage-resources {
    padding: 6rem 0;
    background: var(--gray-ultra-light);
}

.leverage-resources-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.leverage-resources-content {
    text-align: center;
}

.leverage-resources-content h2 {
    color: var(--navy-primary);
    margin-bottom: 2rem;
}

.leverage-resources-content .text-body {
    color: var(--navy-primary);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Features Simple Section */
.features-simple {
    padding: 6rem 0;
    background: var(--white);
    color: var(--navy-primary);
}

.features-simple-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-simple-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-simple-header h2 {
    margin-bottom: 1rem;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-section {
    padding-bottom: 0.5rem;
}

.feature-section-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 0;
    padding: 0.25rem 0;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 2rem;
}

.feature-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-primary);
    line-height: 1.3;
    position: relative;
}

.feature-name::before {
    content: '✓';
    position: absolute;
    left: -1.75rem;
    color: #22c55e;
    font-weight: bold;
    font-size: 1rem;
}

.feature-description {
    font-size: 0.8rem;
    color: var(--navy-medium);
    line-height: 1.4;
}

/* Responsive Features */
@media (max-width: 768px) {
    .features-simple {
        padding: 4rem 0;
    }
    
    .features-simple-container {
        padding: 0 1rem;
    }
    
    .features-content {
        gap: 0.5rem;
    }
    
    .feature-section {
        padding-bottom: 0.25rem;
    }
    
    .feature-section-heading {
        font-size: 1.1rem;
        margin-bottom: 0;
        padding: 0.25rem 0;
    }
    
    .feature-items {
        gap: 0.4rem;
        padding-left: 0;
    }
    
    .feature-item {
        padding: 0.2rem 0;
        padding-left: 1.5rem;
    }
    
    .feature-name {
        font-size: 0.9rem;
    }
    
    .feature-name::before {
        left: -1.25rem;
        font-size: 0.9rem;
    }
    
    .feature-description {
        font-size: 0.75rem;
    }
}
    
    .leverage-resources {
        padding: 4rem 0;
    }
    
    .leverage-resources-container {
        padding: 0 1rem;
    }
    
    .value-props-placeholder-standalone {
        height: 300px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}