/* ==========================================================================
   IT BUSINESS SOLUTIONS - PREMIUM VANILLA CSS DESIGN SYSTEM
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Modern Reset & Variables --- */
:root {
    --font-primary: 'Instrument Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Theme Colors (ITB Solutions) */
    --color-primary: #0a0a0a;
    --color-primary-rgb: 10, 10, 10;
    --color-secondary: #161615;
    --color-secondary-rgb: 22, 22, 21;
    --color-accent: #47A752;
    --color-accent-rgb: 71, 167, 82;
    --color-accent-dark: #3d8c43;
    --color-accent-light: rgba(71, 167, 82, 0.1);
    
    --color-bg-light: #fdfdfc;
    --color-bg-alt: #f7f7f5;
    --color-text-dark: #1b1b18;
    --color-text-muted: #706f6c;
    --color-text-light: #f5f5f4;
    
    /* Layout & Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-accent: 0 10px 20px -5px rgba(71, 167, 82, 0.25);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* --- Dark Mode Variables Overrides --- */
.dark-theme {
    --color-bg-light: #0a0a0a;
    --color-bg-alt: #161615;
    --color-text-dark: #f5f5f4;
    --color-text-muted: #a1a09a;
    --color-secondary: #0f0f0e;
    
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout Containers --- */
.container-custom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
    position: relative;
}

.section-padding-sm {
    padding: 4rem 0;
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.bg-dark {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--color-text-light);
}

/* --- Typography Helpers --- */
.heading-display {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.heading-section {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.heading-card {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.label-small {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.text-body {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.text-accent-brush {
    position: relative;
    color: var(--color-accent);
    display: inline-block;
    z-index: 1;
}

.text-accent-brush::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-accent-light);
    z-index: -1;
    border-radius: var(--border-radius-sm);
    transform: rotate(-1deg);
}

/* --- Premium Buttons & Links --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-text-dark);
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    border: 2px solid var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--color-text-dark);
    color: var(--color-bg-light);
    transform: translateY(-2px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-accent);
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--color-accent-dark);
}

.btn-text svg {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.btn-text:hover svg {
    transform: translateX(4px);
}

/* --- Fixed Header & Navigation --- */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.site-header.scrolled {
    background-color: rgba(var(--color-primary-rgb), 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header.site-header.scrolled .nav-link {
    color: var(--color-text-light);
}

header.site-header.scrolled .logo-text {
    color: #fff;
}

header.site-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text-dark);
}

.logo-text span {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--color-text-dark);
    border-radius: var(--border-radius-sm);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: var(--border-radius-sm);
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-dark);
    padding: 0.5rem;
}

/* --- Hero Section --- */
.hero-wrapper {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(71, 167, 82, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(71, 167, 82, 0.03) 0%, transparent 50%);
}

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

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-svg-bg {
    position: absolute;
    width: 250px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.hero-svg-left {
    left: 2%;
    top: 20%;
}

.hero-svg-right {
    right: 2%;
    top: 40%;
}

/* --- Why Us Section & Features --- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-list {
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.feature-item:first-child {
    border-top: none;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.8;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-text-dark);
}

.why-us-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.why-us-image-wrapper:hover img {
    transform: scale(1.03);
}

/* --- Services Grid & Cards --- */
.services-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(71, 167, 82, 0.15);
}

.service-card:hover::after {
    height: 100%;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
    background-color: var(--color-accent);
    color: #fff;
}

/* --- Testimonials --- */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-t: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.testimonial-meta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.testimonial-meta p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.testimonial-meta span {
    color: var(--color-accent);
    font-weight: 600;
}

/* --- Trust / Logo Cloud --- */
.logo-cloud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.logo-cloud-item {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    opacity: 0.4;
    transition: var(--transition-fast);
}

.logo-cloud-item:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* --- Team Members Grid --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.team-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-avatar-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.team-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-avatar-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-features {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Blog Directory & Cards --- */
.blog-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog-meta-info {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.blog-title-link:hover {
    color: var(--color-accent);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* --- Sidebars & Filters --- */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-widget {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0,0,0,0.03);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.category-list, .tag-cloud {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.category-item:hover {
    color: var(--color-accent);
}

.tag-cloud {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    font-size: 0.8rem;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-full);
}

.tag-item:hover {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* --- Blog Detail blocks & Comments --- */
.post-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.post-content-blocks {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

.post-block {
    margin-bottom: 2.5rem;
}

.post-block h2, .post-block h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.post-block blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin: 2rem 0;
}

/* Comments Section */
.post-comments-section {
    max-width: 800px;
    margin: 5rem auto 0 auto;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 4rem;
}

.comment-list {
    margin-top: 2rem;
}

.comment-item {
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius-sm);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.comment-author-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* --- Premium Contact & AJAX Forms --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-lg);
    padding: 3.5rem;
    border-radius: var(--border-radius-md);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--color-bg-alt);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background-color: var(--color-bg-alt);
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--color-accent);
    background-color: var(--color-bg-light);
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

/* AJAX Response Messages */
.form-response-alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: none;
}

.form-response-alert.success {
    background-color: rgba(71, 167, 82, 0.1);
    color: var(--color-accent);
    border: 1px solid rgba(71, 167, 82, 0.2);
    display: block;
}

.form-response-alert.error {
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: block;
}

/* --- Support Remote Support tool --- */
.support-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.support-hours-badge {
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* --- Footer --- */
footer.site-footer {
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-top {
    padding: 5rem 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-subscribe-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

.footer-subscribe-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--border-radius-sm);
    outline: none;
    background-color: var(--color-bg-alt);
    font-size: 0.9rem;
}

.footer-subscribe-input:focus {
    border-color: var(--color-accent);
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--color-accent);
    transform: translateX(2px);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.footer-bottom {
    background-color: var(--color-bg-alt);
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* --- Scroll-Activated Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Remote Support Bar (Top level urgent support) --- */
.support-bar-header {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.6rem 0;
    font-size: 0.85rem;
}

.support-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-bar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-bar-left svg {
    color: var(--color-accent);
}

.support-bar-btn {
    background-color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 600;
}

.support-bar-btn:hover {
    background-color: var(--color-accent-dark);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .why-us-grid, .blog-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .logo-cloud-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header.site-header {
        height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-burger {
        display: block;
    }
    
    .hero-actions, .form-group-row {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary, .hero-actions a {
        width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   ITB reference homepage and shared public layout
   ========================================================================== */
@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Permanent Marker';
    src: url('../fonts/permanent-marker/PermanentMarker.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

:root {
    --font-primary: 'Switzer', system-ui, sans-serif;
    --font-heading: 'Switzer', system-ui, sans-serif;
    --font-accent: 'Permanent Marker', cursive;
    --color-primary: #335d31;
    --color-primary-rgb: 51, 93, 49;
    --color-secondary: #0b2f1d;
    --color-accent: #47a752;
    --color-accent-dark: #3d9147;
    --color-accent-light: rgba(71, 167, 82, 0.12);
    --color-bg-light: #ffffff;
    --color-bg-alt: #f3f5f8;
    --color-text-dark: #0b2f1d;
    --color-text-muted: #5c6e5b;
}

body.itb-public {
    background: #fff;
    color: var(--color-primary);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.itb-public .container-custom {
    max-width: 88rem;
    padding-inline: 1.5rem;
}

.itb-public .section-padding {
    padding: 6rem 0;
}

.itb-public .heading-display {
    color: var(--color-text-dark);
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.98;
}

.itb-public .heading-section {
    color: var(--color-text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1.06;
}

.itb-public .text-body {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    letter-spacing: -0.03em;
    line-height: 1.5;
}

.itb-public .text-small {
    font-size: 0.875rem;
    margin: 0;
}

.itb-public .label-small {
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.itb-public .text-accent-brush {
    color: var(--color-accent);
    font-family: var(--font-accent);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.itb-public .text-accent-brush::after {
    display: none;
}

.itb-public .btn-primary,
.itb-public .btn-secondary {
    border-radius: 0.5rem;
    box-shadow: none;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.itb-public .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.itb-public .btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    box-shadow: none;
    transform: none;
}

.itb-public .btn-secondary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.itb-public .btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: none;
}

.itb-public .btn-text {
    color: var(--color-accent);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.itb-public header.site-header {
    background: transparent;
    height: 80px;
}

.itb-public header.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    height: 64px;
}

.itb-public header.site-header.scrolled .nav-link {
    color: var(--color-primary);
}

.site-logo {
    display: block;
    height: 40px;
    width: auto;
}

.itb-public .nav-menu {
    gap: 0.25rem;
}

.itb-public .nav-link {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
}

.itb-public .nav-link::after {
    display: none;
}

.itb-public .nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link-circle {
    height: 100%;
    inset: 0;
    overflow: visible;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.nav-link-circle path {
    fill: none;
    opacity: 0;
    stroke: #0b2f1d;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
    stroke-width: 3;
    transition: opacity 0.4s ease-out, stroke-dashoffset 0.4s ease-out;
    vector-effect: non-scaling-stroke;
}

.nav-link:hover .nav-link-circle path,
.nav-link.active .nav-link-circle path {
    opacity: 1;
    stroke-dashoffset: 0;
}

.nav-link.active .nav-link-circle path {
    stroke: #47a752;
}

.mobile-nav-link .nav-link-circle {
    display: none;
}

.itb-public .nav-talk {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

.hero-wrapper {
    background: #fff;
    min-height: 90vh;
    overflow: hidden;
    padding-top: 80px;
    position: relative;
}

.about-hero {
    align-items: center;
    display: flex;
    min-height: 60vh;
}

.itb-public .about-hero .hero-content {
    margin-inline: auto;
    max-width: 760px;
    text-align: center;
}

.about-hero .heading-display {
    margin-bottom: 2rem;
}

.about-centered-intro {
    margin: 0 auto 4rem;
    max-width: 48rem;
    text-align: center;
}

.timeline-list {
    margin: 0 auto;
    max-width: 48rem;
    position: relative;
}

.timeline-line {
    background: rgba(71, 167, 82, .3);
    bottom: 0;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    min-height: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::after {
    content: "";
    display: block;
    width: 50%;
}

.timeline-right {
    flex-direction: row-reverse;
}

.timeline-copy {
    width: 50%;
}

.timeline-left .timeline-copy {
    padding-right: 3rem;
    text-align: right;
}

.timeline-right .timeline-copy {
    padding-left: 3rem;
}

.timeline-copy h3,
.about-team-card h3 {
    color: var(--color-text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-year {
    align-items: center;
    background: var(--color-accent);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 0.75rem;
    font-weight: 700;
    height: 3rem;
    justify-content: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 3rem;
    z-index: 1;
}

.about-team-heading {
    align-items: end;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.about-team-heading > div {
    max-width: 42rem;
}

.about-team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-team-card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    display: flex;
    overflow: hidden;
    transition: box-shadow .3s ease;
}

.about-team-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
}

.about-team-card img {
    flex-shrink: 0;
    object-fit: cover;
    width: 12rem;
}

.about-team-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.about-team-role {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

.itb-public .hero-content {
    max-width: 900px;
}

.hero-description {
    font-size: 1.25rem !important;
    margin: 0 auto 2.5rem !important;
    max-width: 680px;
}

.itb-public .hero-actions {
    gap: 1rem;
    margin-top: 0;
}

.itb-public .hero-actions a {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.hero-arrows {
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.hero-arrow {
    color: var(--color-accent);
    position: absolute;
    width: min(400px, 24vw);
}

.hero-arrow svg {
    height: auto;
    opacity: 0;
    overflow: visible;
    transition: opacity 0.8s ease-out var(--arrow-delay);
    width: 100%;
}

.hero-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 24;
    transition: stroke-dashoffset 0.8s ease-out var(--arrow-delay);
    vector-effect: non-scaling-stroke;
}

.hero-arrow path + path {
    transition-duration: 0.5s;
    transition-delay: calc(var(--arrow-delay) + 0.3s);
}

.hero-arrow.active svg {
    opacity: 1;
}

.hero-arrow.active path {
    stroke-dashoffset: 0;
}

.hero-arrow:nth-child(1) { --arrow-delay: 0.3s; }
.hero-arrow:nth-child(2) { --arrow-delay: 0.5s; }
.hero-arrow:nth-child(3) { --arrow-delay: 0.7s; }
.hero-arrow:nth-child(4) { --arrow-delay: 0.4s; }
.hero-arrow:nth-child(5) { --arrow-delay: 0.6s; }
.hero-arrow:nth-child(6) { --arrow-delay: 0.8s; }

.hero-arrow-left { left: 0; }
.hero-arrow-right { right: 0; transform: scaleX(-1); }
.hero-arrow-top { top: 10%; }
.hero-arrow-middle { top: 38%; }
.hero-arrow-bottom { top: 62%; }
.hero-arrow-left.hero-arrow-top { transform: translateX(-15%); }
.hero-arrow-left.hero-arrow-middle { transform: translateX(-20%); }
.hero-arrow-left.hero-arrow-bottom { transform: translateX(-18%); }
.hero-arrow-right.hero-arrow-top { transform: translateX(15%) scaleX(-1); }
.hero-arrow-right.hero-arrow-middle { transform: translateX(20%) scaleX(-1); }
.hero-arrow-right.hero-arrow-bottom { transform: translateX(18%) scaleX(-1); }

@media (prefers-reduced-motion: reduce) {
    .nav-link-circle path,
    .hero-arrow svg,
    .hero-arrow path {
        transition-duration: 0.01ms;
        transition-delay: 0s;
    }
}

.split-grid {
    align-items: center;
    display: grid;
    gap: 5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-grid-reverse > :first-child { order: 2; }

.split-image {
    border-radius: 0.5rem;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.split-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.itb-public .features-list {
    gap: 0;
    margin: 2rem 0 1rem;
}

.itb-public .feature-item {
    border-top: 1px solid #f3f4f6;
    gap: 1rem;
    padding: 1rem 0;
}

.itb-public .feature-item:first-child {
    border-top: 0;
}

.feature-number {
    color: var(--color-accent);
    flex-shrink: 0;
    font-family: var(--font-accent);
    font-size: 1.125rem;
}

.itb-public .feature-title {
    color: var(--color-text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.section-intro {
    margin-bottom: 4rem;
    max-width: 48rem;
}

.itb-public .services-section-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.itb-public .service-card {
    align-items: flex-start;
    background: #fff;
    border: 0;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    min-height: 0;
    padding: 2rem;
    transition: box-shadow .3s ease;
}

.itb-public .service-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    transform: none;
}

.itb-public .service-card-icon {
    background: var(--color-accent-light);
    border-radius: 0.5rem;
    color: var(--color-accent);
    flex-shrink: 0;
    height: 48px;
    margin: 0;
    width: 48px;
}

.service-title-row {
    align-items: baseline;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.service-title-row h3 {
    color: var(--color-text-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.services-more {
    margin-top: 2.5rem;
}

.services-hero {
    min-height: 60vh;
}

.services-hero .hero-content {
    margin-inline: auto;
    max-width: 880px;
    text-align: center;
}

.services-hero .heading-display {
    margin-bottom: 2rem;
}

.services-catalog {
    background: #fff;
}

.services-page-intro {
    margin: 0 auto 4rem;
    max-width: 48rem;
    text-align: center;
}

.services-page-intro .heading-section {
    margin-bottom: 1rem;
}

.services-page-intro .text-body {
    margin: 1rem auto 0;
    max-width: 42rem;
}

.service-catalog-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-catalog-card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    display: block;
    height: 100%;
    padding: 2rem;
    transition: box-shadow .3s ease, transform .3s ease;
}

.service-catalog-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.service-catalog-header {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-catalog-icon {
    align-items: center;
    background: var(--color-accent-light);
    border-radius: 0.5rem;
    color: var(--color-accent);
    display: flex;
    flex-shrink: 0;
    height: 3rem;
    justify-content: center;
    transition: background-color .3s ease, color .3s ease;
    width: 3rem;
}

.service-catalog-card:hover .service-catalog-icon {
    background: var(--color-accent);
    color: #fff;
}

.service-catalog-header h3 {
    color: var(--color-text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color .3s ease;
}

.service-catalog-card:hover h3 {
    color: var(--color-accent);
}

.service-catalog-card .text-body {
    margin-bottom: 1rem;
}

.service-learn-more {
    align-items: center;
    color: var(--color-accent);
    display: inline-flex;
    font-weight: 500;
    gap: 0.5rem;
}

.service-learn-more svg {
    height: 1rem;
    transition: transform .2s ease;
    width: 1rem;
}

.service-catalog-card:hover .service-learn-more svg {
    transform: translateX(0.25rem);
}

.services-approach-section {
    background: var(--color-bg-alt);
}

.services-approach-inner {
    margin: 0 auto;
    max-width: 56rem;
}

.services-approach-inner > .label-small,
.services-approach-inner > .heading-section {
    display: block;
    text-align: center;
}

.services-approach-inner > .heading-section {
    margin-bottom: 3rem;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-item {
    align-items: flex-start;
    display: flex;
    gap: 1.5rem;
}

.process-number {
    align-items: center;
    background: var(--color-accent);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-shrink: 0;
    height: 3rem;
    justify-content: center;
    width: 3rem;
}

.process-number span {
    color: #fff;
    font-weight: 700;
}

.process-item h3 {
    color: var(--color-text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-item .text-body {
    margin-bottom: 0;
}

.services-cta-section {
    background: #fff;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.services-cta-content {
    margin: 0 auto;
    max-width: 56rem;
    position: relative;
    z-index: 1;
}

.services-cta-section .heading-display {
    margin-bottom: 2.5rem;
}

.services-cta-section .btn-primary {
    font-size: 1rem;
}

.services-cta-arrows {
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.services-cta-arrows > div {
    color: var(--color-accent);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.services-cta-arrow-left {
    left: 0;
}

.services-cta-arrow-right {
    right: 0;
}

.services-cta-arrows svg {
    height: auto;
    width: min(200px, 12vw);
}

.services-cta-arrows path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 6;
}

.detail-back-wrapper {
    padding-top: 6rem;
}

.detail-back-link {
    align-items: center;
    color: var(--color-text-muted);
    display: inline-flex;
    font-weight: 500;
    gap: 0.5rem;
    transition: color .2s ease;
}

.detail-back-link:hover {
    color: var(--color-accent);
}

.detail-back-link svg {
    height: 1rem;
    width: 1rem;
}

.detail-hero {
    min-height: 60vh;
    padding-top: 5rem;
}

.detail-hero .hero-content {
    margin-inline: auto;
    max-width: 56rem;
    text-align: center;
}

.detail-hero .label-small {
    margin-bottom: 1.5rem;
}

.detail-hero .heading-display {
    margin-bottom: 2rem;
}

.detail-split-section {
    background: #fff;
}

.detail-alt-section {
    background: var(--color-bg-alt);
}

.detail-split-grid {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-narrow-grid {
    margin-inline: auto;
    max-width: 56rem;
}

.detail-split-grid .heading-section {
    margin-bottom: 1.5rem;
}

.detail-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.detail-image-wrapper {
    aspect-ratio: 4 / 3;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.detail-image-wrapper img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.detail-check-list,
.detail-card-stack,
.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-check-item {
    align-items: flex-start;
    display: flex;
    gap: 0.75rem;
}

.detail-check-item > span,
.detail-icon-card > span {
    align-items: center;
    background: var(--color-accent-light);
    border-radius: 999px;
    color: var(--color-accent);
    display: flex;
    flex-shrink: 0;
    height: 1.5rem;
    justify-content: center;
    margin-top: 0.125rem;
    width: 1.5rem;
}

.detail-icon-card > span {
    height: 2.5rem;
    width: 2.5rem;
}

.detail-check-item svg {
    height: 1rem;
    width: 1rem;
}

.detail-check-item .text-body {
    margin-bottom: 0;
}

.detail-card-grid {
    display: grid;
    gap: 2rem;
}

.detail-card-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-number-card,
.detail-icon-card,
.simple-white-card {
    background: #fff;
    border-radius: 0.5rem;
    height: 100%;
    padding: 1.5rem;
}

.detail-number-card,
.detail-icon-card {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

.detail-number-card > span {
    align-items: center;
    background: var(--color-accent-light);
    border-radius: 0.5rem;
    color: var(--color-accent);
    display: flex;
    flex-shrink: 0;
    font-weight: 700;
    height: 2.5rem;
    justify-content: center;
    width: 2.5rem;
}

.detail-number-card h3,
.detail-icon-card h3,
.simple-white-card h3 {
    color: var(--color-text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-number-card .text-body,
.detail-icon-card .text-body,
.simple-white-card .text-body {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.dark-cta {
    background: var(--color-text-dark);
    color: #fff;
}

.dark-cta .heading-display {
    color: #fff;
}

.dark-cta .btn-primary {
    background: #fff;
    color: var(--color-text-dark);
}

.dark-cta .services-cta-arrows > div {
    color: rgba(255,255,255,0.2);
}

.industry-card-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    display: block;
    height: 100%;
    padding: 2rem;
    transition: box-shadow .3s ease, transform .3s ease;
}

.industry-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}

.industry-card-icon {
    align-items: center;
    background: var(--color-accent-light);
    border-radius: 0.5rem;
    color: var(--color-accent);
    display: flex;
    height: 3.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color .3s ease, color .3s ease;
    width: 3.5rem;
}

.industry-card:hover .industry-card-icon {
    background: var(--color-accent);
    color: #fff;
}

.industry-card-eyebrow {
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.industry-card h3 {
    color: var(--color-text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color .3s ease;
}

.industry-card:hover h3 {
    color: var(--color-accent);
}

.industry-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.industry-feature-list div {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.industry-feature-list span {
    background: var(--color-accent);
    border-radius: 999px;
    display: block;
    height: 0.375rem;
    width: 0.375rem;
}

.compliance-item {
    align-items: center;
    color: var(--color-text-dark);
    display: flex;
    font-weight: 500;
    gap: 0.75rem;
}

.compliance-item svg {
    color: var(--color-accent);
    height: 1.25rem;
    width: 1.25rem;
}

.legal-success-section {
    background: var(--color-text-dark);
    color: #fff;
    text-align: center;
}

.legal-success-card {
    margin: 0 auto;
    max-width: 48rem;
}

.legal-success-label {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.legal-success-card h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-success-card p:last-child {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
}

.testimonial-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
    max-width: 56rem;
}

.testimonial-company {
    color: var(--color-accent) !important;
}

.testimonial-stats-section {
    background: var(--color-text-dark);
    color: #fff;
}

.testimonial-stats-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat p {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-stat span {
    color: rgba(255,255,255,0.7);
}

.testimonials-section {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3rem;
    text-align: left;
}

.itb-public .testimonial-card {
    background: #fff;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
}

.testimonial-card blockquote {
    color: var(--color-text-dark);
    font-size: 1.125rem;
    line-height: 1.5;
}

.itb-public .testimonial-author {
    align-items: flex-start;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    gap: 0.1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.testimonial-quote-icon {
    color: rgba(71, 167, 82, 0.3);
    font-size: 2.75rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-quote {
    flex: 1;
    margin-bottom: 1.5rem;
}

.trust-section {
    text-align: center;
}

.trust-copy {
    margin: 0 auto 3.5rem;
    max-width: 720px;
}

.partners-row,
.trust-stats {
    display: grid;
    gap: 1rem;
}

.partners-row {
    grid-template-columns: repeat(4, 1fr);
}

.partners-row span {
    color: #94a3b8;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem;
}

.trust-stats {
    border-top: 1px solid #f3f4f6;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
    padding-top: 3rem;
}

.trust-stats div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-stats strong {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.trust-stats span {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.cta-section {
    background: var(--color-text-dark);
    text-align: center;
}

.cta-section .heading-section {
    color: #fff;
    margin: 0 auto 2rem;
    max-width: 760px;
}

.footer-support {
    background: var(--color-text-dark);
    color: #fff;
}

.footer-support-row,
.footer-support-label,
.footer-support-btn {
    align-items: center;
    display: flex;
}

.footer-support-row {
    justify-content: space-between;
    padding-block: 1.5rem;
}

.footer-support-label,
.footer-support-btn {
    gap: 0.75rem;
}

.footer-support-label svg {
    color: var(--color-accent);
}

.footer-support-btn {
    background: var(--color-accent);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
}

.footer-main {
    display: grid;
    gap: 6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 6rem;
}

.footer-promise {
    position: relative;
}

.footer-circle-arrow {
    color: var(--color-accent);
    height: 300px;
    left: -2rem;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
}

.footer-promise h2,
.footer-copyright {
    position: relative;
    z-index: 1;
}

.footer-copyright,
.footer-note {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-top: 2rem;
}

.footer-subscribe-title {
    color: var(--color-text-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.itb-public .footer-subscribe-form {
    gap: 0.75rem;
    margin-top: 0;
}

.itb-public .footer-subscribe-input {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #e5e7eb;
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.itb-public .footer-subscribe-input:focus {
    border-color: var(--color-accent);
}

.footer-subscribe-message {
    align-items: flex-start;
    border: 1px solid transparent;
    border-radius: 8px;
    display: none;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.45;
    margin-top: 0.875rem;
    padding: 0.875rem 1rem;
}

.footer-subscribe-message::before {
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.75rem;
    height: 1.25rem;
    justify-content: center;
    line-height: 1.25rem;
    margin-right: 0.625rem;
    margin-top: 0.0625rem;
    width: 1.25rem;
}

.footer-subscribe-message.is-visible {
    display: flex;
}

.footer-subscribe-message.is-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.footer-subscribe-message.is-success::before {
    background: #22c55e;
    color: #ffffff;
    content: "OK";
}

.footer-subscribe-message.is-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.footer-subscribe-message.is-error::before {
    background: #ef4444;
    color: #ffffff;
    content: "!";
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-links-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-links-grid div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-grid a {
    color: var(--color-primary);
    font-size: 0.875rem;
}

.footer-links-grid a:hover,
.footer-bottom a:hover {
    color: var(--color-accent);
}

.footer-social-link {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.itb-public .footer-bottom {
    background: var(--color-bg-alt);
    padding: 1.5rem 0;
}

.itb-public .footer-bottom-wrapper {
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    gap: 1.5rem;
    justify-content: flex-start;
}

.footer-logo {
    height: 32px;
    opacity: 0.7;
    width: auto;
}

.footer-bottom-wrapper > a:first-child {
    margin-right: auto;
}

@media (max-width: 1024px) {
    .itb-public .nav-menu,
    .itb-public .nav-talk {
        display: none;
    }

    .itb-public .nav-burger {
        display: block;
    }

    .hero-arrow {
        width: 280px;
    }

    .split-grid {
        gap: 3rem;
    }

    .itb-public .services-section-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-card-grid,
    .testimonial-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-split-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .itb-public .container-custom {
        padding-inline: 3rem;
    }
}

@media (min-width: 1024px) {
    .itb-public .container-custom {
        padding-inline: 5rem;
    }
}

@media (max-width: 767px) {
    .itb-public .container-custom {
        padding-inline: 1.5rem;
    }

    .itb-public .section-padding {
        padding: 4rem 0;
    }

    .itb-public .heading-display {
        font-size: clamp(3.25rem, 16vw, 5rem);
    }

    .hero-arrows {
        display: none;
    }

    .itb-public .hero-actions a {
        width: 100%;
    }

    .split-grid,
    .itb-public .services-section-grid,
    .service-catalog-grid,
    .industry-card-grid,
    .detail-card-grid-two,
    .testimonial-grid,
    .testimonial-grid-two,
    .testimonial-stats-grid,
    .partners-row,
    .trust-stats,
    .about-team-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .split-grid-reverse > :first-child {
        order: 0;
    }

    .split-image {
        min-height: 280px;
    }

    .timeline-line,
    .timeline-year {
        left: 0;
        transform: none;
    }

    .timeline-item,
    .timeline-right {
        flex-direction: row;
        padding-left: 4rem;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-copy,
    .timeline-left .timeline-copy,
    .timeline-right .timeline-copy {
        padding: 0;
        text-align: left;
        width: 100%;
    }

    .about-team-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-team-card {
        flex-direction: column;
    }

    .about-team-card img {
        height: 12rem;
        width: 100%;
    }

    .footer-main {
        gap: 3rem;
        padding-block: 4rem;
    }

    .footer-circle-arrow {
        display: none;
    }

    .services-cta-arrows {
        display: none;
    }

    .process-item {
        gap: 1rem;
    }

    .footer-support-row,
    .itb-public .footer-bottom-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-logo {
        margin-right: 0;
    }
}

/* Reference pages: testimonials, blog, support and contact */
.testimonial-featured-grid,
.testimonial-more-grid,
.blog-reference-grid,
.support-step-grid,
.support-contact-grid,
.faq-grid {
    display: grid;
    gap: 2rem;
}

.testimonial-featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3rem;
}

.testimonial-more-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3rem;
}

.testimonial-mini strong,
.support-contact-grid strong {
    color: var(--color-accent);
    display: block;
    font-size: .95rem;
    margin-top: 1rem;
}

.testimonial-industry {
    color: var(--color-text-muted);
    font-size: .75rem;
    margin-top: .35rem;
}

.blog-featured-card {
    align-items: center;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
    overflow: hidden;
    transition: box-shadow .3s ease;
}

.blog-featured-card:hover,
.blog-reference-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}

.blog-featured-image {
    aspect-ratio: 4 / 3;
    height: 100%;
    overflow: hidden;
}

.blog-featured-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    width: 100%;
}

.blog-featured-card:hover img {
    transform: scale(1.05);
}

.blog-featured-copy {
    padding: 2rem;
}

.blog-featured-copy h2,
.blog-reference-card h3 {
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin: 1rem 0;
    transition: color .2s ease;
}

.blog-featured-copy h2 { font-size: 1.875rem; }
.blog-reference-card h3 { font-size: 1.125rem; }
.blog-featured-card:hover h2,
.blog-reference-card:hover h3 { color: var(--color-accent); }

.blog-tags {
    align-items: center;
    display: flex;
    gap: 1rem;
}

.blog-tags span,
.blog-detail-meta span {
    background: var(--color-accent-light);
    border-radius: 999px;
    color: var(--color-accent);
    font-size: .875rem;
    padding: .25rem .75rem;
}

.blog-tags small,
.blog-detail-meta small,
.blog-byline {
    color: var(--color-text-muted);
    font-size: .75rem;
}

.blog-byline {
    margin: 1rem 0;
}

.blog-byline span,
.blog-detail-hero p span { margin-inline: .4rem; }

.blog-reference-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3rem;
}

.blog-reference-card {
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    overflow: hidden;
    transition: box-shadow .3s ease;
}

.blog-reference-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-reference-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    width: 100%;
}

.blog-reference-card:hover img { transform: scale(1.05); }
.blog-reference-copy { padding: 1.5rem; }

.blog-reference-card .text-body {
    font-size: .875rem;
}

.blog-detail-hero {
    background: var(--color-text-dark);
    color: #fff;
    padding: 10rem 0 9rem;
}

.blog-detail-back {
    color: rgba(255,255,255,.7);
    margin-bottom: 3rem;
}

.blog-detail-meta {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-detail-meta small,
.blog-detail-hero p { color: rgba(255,255,255,.7); }

.blog-detail-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 64rem;
}

.blog-article-shell { max-width: 64rem !important; }

.blog-article-image {
    aspect-ratio: 3 / 1;
    border-radius: .5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    margin-top: -10rem;
    object-fit: cover;
    width: 100%;
}

.blog-prose {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 4rem auto 0;
    max-width: 48rem;
}

.blog-prose h1,
.blog-prose h2,
.blog-prose h3 {
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.blog-prose h1 { font-size: 2.25rem; margin-bottom: 1.5rem; }
.blog-prose h2 { font-size: 1.75rem; margin: 3rem 0 1rem; }
.blog-prose h3 { font-size: 1.25rem; margin: 2rem 0 1rem; }
.blog-prose p,
.blog-prose ul { margin-bottom: 1.5rem; }
.blog-prose ul { list-style: disc; padding-left: 1.5rem; }

.blog-topic-row {
    align-items: center;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 3rem auto 0;
    max-width: 48rem;
    padding-top: 1.5rem;
}

.blog-topic-row span {
    background: var(--color-bg-alt);
    border-radius: 999px;
    color: var(--color-text-muted);
    font-size: .875rem;
    padding: .25rem .75rem;
}

.support-download {
    background: var(--color-text-dark);
    color: #fff;
    text-align: center;
}

.support-download-inner { max-width: 56rem !important; }
.support-kicker { color: var(--color-accent); font-size: .875rem; font-weight: 600; }
.support-download h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin: 1rem 0; }
.support-download h2 span { color: var(--color-accent); }
.support-download p { color: rgba(255,255,255,.72); font-size: 1.125rem; line-height: 1.6; }

.support-download-btn {
    background: var(--color-accent);
    border-radius: .5rem;
    color: #fff;
    display: inline-flex;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1rem 2rem;
}

.support-security {
    color: rgba(255,255,255,.62);
    display: flex;
    flex-wrap: wrap;
    font-size: .875rem;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.support-step-grid,
.support-contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.support-step { text-align: center; }
.support-step > span {
    align-items: center;
    background: var(--color-accent-light);
    border-radius: 50%;
    color: var(--color-accent);
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    height: 4rem;
    justify-content: center;
    margin: 0 auto 1rem;
    width: 4rem;
}
.support-step h3,
.support-hours h3 { color: var(--color-text-dark); font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.support-contact-grid { text-align: center; }
.support-contact-grid p { color: var(--color-text-muted); font-size: .875rem; margin-top: .3rem; }
.support-hours { background: #fff; border-radius: .5rem; margin-top: 2rem; padding: 1.5rem; }
.support-hours p { color: var(--color-text-muted); margin-top: .5rem; }
.faq-shell { max-width: 56rem !important; }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.contact-reference-grid {
    display: grid;
    gap: 5rem;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}
.contact-reference-lead { margin: 1.5rem 0 2rem; }
.contact-reference-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-reference-list a,
.contact-reference-list div { display: flex; gap: 1rem; }
.contact-reference-list a > span:last-child,
.contact-reference-list div > span:last-child { display: flex; flex-direction: column; }
.contact-reference-icon {
    align-items: center;
    background: rgba(71, 167, 82, .1);
    border-radius: .5rem;
    color: var(--color-accent);
    display: flex;
    flex: 0 0 3rem;
    height: 3rem;
    justify-content: center;
    width: 3rem;
}
.contact-reference-list strong { color: var(--color-text-dark); }
.contact-reference-list span { color: var(--color-text-muted); margin-top: .2rem; }
.contact-reference-list small { color: var(--color-text-muted); margin-top: .2rem; }
.contact-reference-form h3 { color: var(--color-text-dark); font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; }
.contact-map-frame {
    aspect-ratio: 21 / 9;
    background: #dfe8df;
    border-radius: .5rem;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .testimonial-featured-grid,
    .testimonial-more-grid,
    .blog-reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .testimonial-featured-grid,
    .testimonial-more-grid,
    .blog-featured-card,
    .blog-reference-grid,
    .support-step-grid,
    .support-contact-grid,
    .faq-grid,
    .contact-reference-grid { grid-template-columns: 1fr; }
    .blog-detail-hero { padding: 8rem 0 7rem; }
    .blog-article-image { aspect-ratio: 2 / 1; margin-top: -7rem; }
}

/* Team at work */
.team-work-hero {
    align-items: center;
    display: flex;
    min-height: 70vh;
    overflow: hidden;
    padding-top: 5rem;
    position: relative;
}

.team-work-hero-image,
.team-work-hero-overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.team-work-hero-image { object-fit: cover; }
.team-work-hero-overlay { background: linear-gradient(90deg, rgba(1,50,32,.94), rgba(1,50,32,.72), rgba(1,50,32,.48)); }
.team-work-hero-content { position: relative; z-index: 1; }
.team-work-hero-content .label-small { color: var(--color-accent); margin-bottom: 1rem; }
.team-work-hero-content .heading-display { color: #fff; margin-bottom: 1.5rem; }
.team-work-hero-copy { color: rgba(255,255,255,.9); font-size: 1.25rem; line-height: 1.6; max-width: 42rem; }

.team-work-intro {
    margin: 0 auto 3rem;
    max-width: 48rem;
    text-align: center;
}

.team-work-intro .label-small { margin-bottom: 1rem; }
.team-work-intro .text-body { margin-top: 1rem; }

.team-action-gallery {
    column-count: 3;
    column-gap: 1rem;
}

.team-action-card {
    background: #f3f4f6;
    border-radius: .5rem;
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.team-action-card img {
    display: block;
    height: auto;
    transition: transform .5s ease;
    width: 100%;
}

.team-action-card:hover img { transform: scale(1.05); }

.team-action-overlay {
    background: linear-gradient(0deg, rgba(1,50,32,.86), transparent 65%);
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .3s ease;
}

.team-action-card:hover .team-action-overlay { opacity: 1; }

.team-action-overlay p {
    bottom: 1rem;
    color: #fff;
    font-weight: 500;
    left: 1rem;
    position: absolute;
    right: 1rem;
}

.team-approach-grid,
.team-stats-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-approach-card { padding: 1.5rem; text-align: center; }

.team-approach-card > span {
    align-items: center;
    background: var(--color-accent-light);
    border-radius: 50%;
    color: var(--color-accent);
    display: flex;
    font-size: 1.875rem;
    font-weight: 600;
    height: 4rem;
    justify-content: center;
    margin: 0 auto 1rem;
    width: 4rem;
}

.team-approach-card h3 { color: var(--color-text-dark); font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.team-stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-stats-grid div { display: flex; flex-direction: column; text-align: center; }
.team-stats-grid strong { color: var(--color-accent); font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 600; letter-spacing: -.04em; margin-bottom: .5rem; }
.team-stats-grid span { color: var(--color-text-muted); }

@media (max-width: 1024px) {
    .team-action-gallery { column-count: 2; }
    .team-action-card img { transform: scale(1.05); }
    .team-action-overlay { opacity: 1; }
}

@media (max-width: 767px) {
    .team-action-gallery { column-count: 1; }
    .team-approach-grid,
    .team-stats-grid { grid-template-columns: 1fr; }
    .team-work-hero-copy { font-size: 1.05rem; }
}
