/* =========================================
   TAKTER STYLE SYSTEM v2.0
   =========================================
   
   TABLE OF CONTENTS
   -----------------------------------------
   1. VARIABLES & ROOT
   2. RESET & BASE ELEMENTS
   3. ICONS
   4. TYPOGRAPHY
   5. HEADER & NAVIGATION
   6. LAYOUT & GRID
   7. BUTTONS
   8. CARDS
   9. SECTIONS & CONTAINERS
   10. COMPONENTS
       - Accordion
       - Badges
       - Breadcrumb
       - CTA Banners
       - FAQ
       - Forms
       - Lead Space (Hero)
       - Lists
       - Modals
       - Stats
       - Tables
       - Tags
   11. PAGE-SPECIFIC STYLES
   12. UTILITIES
   13. RESPONSIVE (Mobile) - END OF FILE
   
   ================================********* */


/* =========================================
   1. VARIABLES & ROOT
   ================================********* */

/* Takter Color Palette */
:root {
    --takter-main: #F06E00;
    --takter-orange-dark: #b35100;
    --takter-dark-green: #0e4749;
    --takter-glow-green: #95c623;
    --takter-dark-gray: #4a5457;
    --takter-black: #161616;

    /* Takter Oragen ajustado para WCAG standard AA large */
    --takter-blue-dark: #002d9c;
    --takter-gray-100: #161616;
    --takter-gray-90: #262626;
    --takter-gray-80: #393939;
    --takter-gray-70: #525252;
    --takter-gray-60: #6f6f6f;
    --takter-gray-50: #8d8d8d;
    --takter-gray-40: #a8a8a8;
    --takter-gray-30: #c6c6c6;
    --takter-gray-20: #e0e0e0;
    --takter-gray-10: #f4f4f4;
    --takter-white: #ffffff;

    /* Notification Colors (Standard Web) */
    --takter-success-bg: #198754;
    --takter-success-text: #ffffff;
    --takter-error-bg: #dc3545;
    --takter-error-text: #ffffff;
    --takter-warning-bg: #ffc107;
    --takter-warning-text: #000000;
    --takter-info-bg: #0dcaf0;
    --takter-info-text: #000000;

    /* CDS Variables for .lead-in style */
    --cds-productive-heading-03-font-size: 1.25rem;
    --cds-productive-heading-03-font-weight: 400;
    --cds-productive-heading-03-letter-spacing: 0;
    --cds-productive-heading-03-line-height: 1.4;
}

.takter-icon-sm {
    width: 16px;
    height: 16px;
    fill: currentColor;
    vertical-align: middle;
    margin-right: 4px;
}

.takter-icon-lg {
    width: 48px;
    height: 48px;
    fill: currentColor;
    vertical-align: middle;
}

/* Material Symbols Base Style */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    user-select: none;
}

/* Helper for larger icons */
.material-symbols-outlined.md-48 {
    font-size: 48px;
}

.material-symbols-outlined.md-64 {
    font-size: 64px;
}


/* =========================================
   2. RESET & BASE ELEMENTS
   ================================********* */

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


html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #161616;
    background: #ffffff;
}

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


/* =========================================
   5. HEADER & NAVIGATION
   ================================********* */

/* Header Takter Style */
.takter-header {
    background: var(--takter-black);
    height: 50px;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--takter-gray-80);
}

.takter-header-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.takter-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--takter-white);
    /* Default dark color */
    transition: color 0.3s ease;
}

/* Smart Logo: White on dark backgrounds */
.bg-dark .takter-logo,
.takter-header.dark .takter-logo {
    color: var(--takter-white);
}

.takter-logo-svg {
    height: 32px;
    width: auto;
}

.takter-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.takter-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.takter-mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--takter-gray-80);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.takter-header.dark .takter-mobile-toggle span,
.bg-dark .takter-mobile-toggle span {
    background-color: var(--takter-white);
}

.takter-mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.takter-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.takter-mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.takter-nav-links {
    display: flex;
    align-items: center;
    height: 100%;
}

.takter-nav-links a {
    color: var(--takter-gray-30);
    text-decoration: none;
    font-size: 14px;
    padding: 0 16px;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: all 0.11s cubic-bezier(0, 0, 0.38, 0.9);
}

.takter-nav a:hover {
    background: var(--takter-gray-100);
    color: var(--takter-white);
    border-bottom-color: var(--takter-main);
}

/* Breadcrumb */
.takter-breadcrumb {
    background: var(--takter-white);
    border-bottom: 1px solid var(--takter-gray-20);
}

.takter-breadcrumb-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.takter-breadcrumb a {
    color: var(--takter-main);
    text-decoration: none;
}

.takter-breadcrumb span {
    color: var(--takter-gray-70);
}

/* Lead-in style (IBM Inspired) */
.lead-in p {
    font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
    font-weight: var(--cds-productive-heading-03-font-weight, 400);
    letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
    line-height: var(--cds-productive-heading-03-line-height, 1.4);
}

.takter-lead-offset {
    padding-right: 32px;
}

.takter-text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Hero Section - Takter Style */
.takter-lead-space {
    background: linear-gradient(to bottom, var(--takter-gray-100) 0%, var(--takter-gray-90) 100%);
    padding: 80px 0;
}

.takter-lead-space-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.takter-lead-content h1 {
    font-size: 54px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--takter-white);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.takter-lead-content p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--takter-gray-30);
    margin-bottom: 32px;
    font-weight: 400;
}

.takter-lead-image {
    width: 100%;
    height: 400px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
}

/* Takter Buttons */
.takter-btn,
.takter-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 64px 14px 16px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.11s cubic-bezier(0, 0, 0.38, 0.9);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.takter-btn-primary {
    background: var(--takter-main);
    color: var(--takter-white);
}

.takter-btn-primary:hover {
    background: rgba(253, 116, 0, 0.5);
}

.takter-btn-secondary {
    background: transparent;
    color: var(--takter-main);
    border: 1px solid var(--takter-main);
}

.takter-btn-secondary:hover {
    background: var(--takter-main);
    color: var(--takter-white);
}

.takter-btn-outline {
    background: transparent;
    color: var(--takter-main);
    border: 1px solid var(--takter-main);
}

.takter-btn-outline:hover {
    background: var(--takter-white);
    color: var(--takter-white);
}

.takter-btn::after,
.takter-btn-outline::after {
    content: '→';
    position: absolute;
    right: 16px;
    font-size: 16px;
}

/* Content Sections */
.takter-content-section {
    max-width: 1584px;
    margin: 0 auto;
    padding: 96px 16px;
}

/* Full Width Section Pattern */
.takter-section-full {
    width: 100%;
    padding: 96px 0;
}

.takter-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
}

.takter-content-section.gray {
    background: var(--takter-gray-10);
}

.takter-section-header {
    max-width: 720px;
    margin-bottom: 64px;
}

.takter-section-header h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.19;
    color: var(--takter-gray-100);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.takter-section-header p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--takter-gray-70);
    font-weight: 400;
}

/* =========================================
   Grid System & Layout
   ================================********* */

/* Card Grid - Main Wrapper */
.takter-card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--takter-gray-20);
    border: 1px solid var(--takter-gray-20);
}

.takter-card-group-transparent {
    background: transparent;
    border: none;
    gap: 24px;
}

/* Grid Columns Modifiers */
.takter-card-group--1-col {
    grid-template-columns: repeat(1, 1fr);
}

.takter-card-group--2-cols,
.takter-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.takter-card-group--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.takter-card-group--4-cols,
.takter-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.takter-card-group--5-cols {
    grid-template-columns: repeat(5, 1fr);
}

.takter-card-group--6-cols {
    grid-template-columns: repeat(6, 1fr);
}

.takter-card-group--8-cols {
    grid-template-columns: repeat(8, 1fr);
}

/* Grid Spacing / Gaps */
.takter-gap-0 {
    gap: 1px !important;
}

/* 1px gap to show separators */

.takter-gap-16 {
    gap: 16px !important;
}

.takter-gap-24 {
    gap: 24px !important;
}

.takter-gap-32 {
    gap: 32px !important;
}

/* Spaced Gaps Behavior: Transparent bg + Child Borders */
.takter-gap-16,
.takter-gap-24,
.takter-gap-32 {
    background: transparent !important;
    border: none !important;
}

.takter-gap-16 .takter-card,
.takter-gap-24 .takter-card,
.takter-gap-32 .takter-card {
    border: 1px solid var(--takter-gray-20);
}

/* =========================================
   8. CARDS
   ================================********* */

/* Base Card Style */
.takter-card {
    background: var(--takter-white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    transition: all 0.11s cubic-bezier(0, 0, 0.38, 0.9);
}

.takter-card:hover {
    background: var(--takter-gray-10);
}

/* Card Attributes */
.takter-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--takter-gray-100);
    margin-bottom: 16px;
}

.takter-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--takter-gray-70);
    flex-grow: 0;
}

/* Ensure consistent height when followed by check-list */
.takter-card p:has(+ .takter-check-list) {
    min-height: 65px;
}

.takter-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--takter-main);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.takter-card-link {
    color: var(--takter-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.takter-card-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.11s;
}

.takter-card-link:hover::after {
    transform: translateX(4px);
}

/* Card Focus Label (e.g., "FOCO: PRÁTICAS") */
.takter-card-focus {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--takter-main);
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--takter-gray-20);
}

/* Card Themes */
.takter-card-group--light {
    background: var(--takter-gray-20);
    border-color: var(--takter-gray-20);
}

.takter-card-group--dark {
    background: var(--takter-black);
    border-color: var(--takter-gray-90);
}

/* Variant: Image Top */
.takter-card-image-top {
    padding: 0 !important;
    overflow: hidden;
}

.takter-card-img-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--takter-gray-10);
}

.takter-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.takter-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Variant: Colored Cards */
.takter-card-green {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.takter-card-green h3,
.takter-card-green p,
.takter-card-green .takter-tags .takter-tag {
    color: white !important;
}

.takter-card-green:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* =========================================
   12. UTILITIES
   ================================********* */



/* CTA Banner */
.takter-cta-banner {
    background: var(--takter-main);
    color: var(--takter-white);
    padding: 64px 0;
}

.takter-cta-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.takter-cta-content h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.takter-cta-content p {
    font-size: 16px;
    opacity: 0.9;
}

.takter-btn-inverse {
    background: var(--takter-white);
    color: var(--takter-main);
}

.takter-btn-inverse:hover {
    background: var(--takter-gray-10);
}

/* Footer Takter Style */
/* Footer Takter Style (IBM Inspired) */
.takter-footer {
    background: var(--takter-gray-100);
    color: var(--takter-gray-30);
    padding: 64px 0 32px;
    font-size: 14px;
}

.takter-footer-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Top Section: Logo + Links */
.takter-footer-top {
    display: flex;
    flex-direction: row;
    gap: 64px;
    margin-bottom: 64px;
}

.takter-footer-logo {
    flex: 0 0 200px;
    /* Fixed width for logo column */
}

.takter-footer-logo img {
    height: 80px;
    opacity: 0.9;
}

.takter-footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.takter-footer-column h3 {
    color: var(--takter-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.takter-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.takter-footer-column li {
    margin-bottom: 12px;
}

.takter-footer-column a {
    color: var(--takter-gray-30);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.11s;
}

.takter-footer-column a:hover {
    color: var(--takter-main);
    text-decoration: underline;
}

/* Bottom Section */
.takter-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--takter-gray-80);
    font-size: 12px;
}

.takter-footer-contact {
    display: flex;
    gap: 24px;
}

.takter-footer-contact a {
    color: var(--takter-gray-30);
    text-decoration: none;
}

.takter-footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.takter-footer-legal a {
    color: var(--takter-gray-30);
    text-decoration: none;
}

.takter-footer-legal span {
    color: var(--takter-gray-60);
    margin-left: 16px;
}

.takter-footer-contact a:hover,
.takter-footer-legal a:hover {
    color: var(--takter-main);
    text-decoration: underline;
}

/* Manifesto & New Utilities */
.takter-bg-light {
    background-color: var(--takter-gray-10);
}

.takter-bg-white {
    background-color: var(--takter-white);
    color: var(--takter-gray-100);
}

.takter-bg-gray {
    background-color: var(--takter-gray-10);
    color: var(--takter-gray-100);
}

.takter-bg-gray-dark {
    background-color: var(--takter-gray-90);
    color: var(--takter-white);
}

.takter-bg-gray-mid {
    background-color: var(--takter-gray-20);
    color: var(--takter-gray-100);
}

.takter-bg-main {
    background-color: var(--takter-main);
    color: var(--takter-white);
}

.takter-bg-dark {
    background-color: var(--takter-black);
    color: var(--takter-white);
}

.takter-bg-gradient-nature {
    background: linear-gradient(135deg, var(--takter-dark-green) 0%, #1a5c5e 100%);
    color: var(--takter-white);
}

.takter-bg-branded-gradient {
    background: linear-gradient(135deg, #015CA9 0%, #53B9AB 100%);
}

/* =========================================
   ERP Gap Section Styles
   ================================********* */

.takter-text-gradient-orange {
    background: linear-gradient(90deg, var(--takter-orange-dark) 0%, var(--takter-main) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.5px;
    display: inline-block;
    /* Ensure gradient works on some browsers */
}

.takter-gap-list {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 24px;
    margin-top: 32px;
}

.takter-gap-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-left: 2px solid var(--takter-gray-20);
    transition: border-color 0.3s;
}

.takter-gap-item:hover {
    border-left-color: var(--takter-main);
}

.takter-gap-number {
    font-weight: 700;
    color: var(--takter-main);
    font-size: 14px;
    flex-shrink: 0;
}

.takter-gap-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: var(--takter-gray-100);
    font-weight: 600;
}

.takter-gap-text p {
    margin: 0;
    font-size: 13px;
    color: var(--takter-gray-70);
    line-height: 1.4;
}

.takter-gap-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--takter-gray-70);
    margin-bottom: 48px;
}

.takter-static-graphic-container {
    background: #fdfdfd;
    border: 1px solid var(--takter-gray-20);
    padding: 32px;
    border-radius: 4px;
    position: relative;
}

.takter-hero-environmental {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/company/environmental-header-bg.avif') no-repeat center center;
    background-size: cover;
    position: relative;
}

.takter-bg-success {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/images/products/converge/converge-case-testimonial.avif') no-repeat center center;
    background-size: cover;
    color: var(--takter-white);
}

/* Parallax Utility */
.takter-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.takter-bg-nature {
    /* Using the environmental header bg for reuse */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/company/environmental-header-bg.avif');
}

.takter-bg-nature-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/company/environmental-header-bg.avif');
}

.takter-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.takter-section-narrow {
    max-width: 800px !important;
}

.takter-spacer-lg {
    height: 80px;
    width: 100%;
    display: block;
}

.takter-card-dark {
    background-color: var(--takter-black);
    /* Was #212529, sticking to variable or keeping as is? User said 'not black'. Let's keep dark as is, and add gray */
    background-color: #212529;
    border: 1px solid #343a40;
}

.takter-card-gray {
    background-color: var(--takter-gray-80);
    /* Dark Gray but not black */
    border: 1px solid var(--takter-gray-70);
    color: var(--takter-white);
}

.takter-card-gray h3 {
    color: var(--takter-white);
}

.takter-card-gray p {
    color: var(--takter-gray-30);
}

.takter-card-gray .takter-card-icon,
.takter-card-gray .takter-card-link {
    color: var(--takter-white);
}

.takter-card-gray:hover {
    background-color: var(--takter-gray-70);
}


/* =========================================
   Accordion Component (FAQ)
   ================================********* */

.takter-accordion {
    width: 100%;
    margin-bottom: 32px;
}

.takter-accordion-item {
    border-bottom: 1px solid var(--takter-gray-20);
    overflow: hidden;
}

.takter-accordion-item:first-child {
    border-top: 1px solid var(--takter-gray-20);
}

.takter-accordion-trigger {
    list-style: none;
    /* Hide default triangle */
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.2s ease;
}

/* Hide default marker in Webkit/Chrome */
.takter-accordion-trigger::-webkit-details-marker {
    display: none;
}

.takter-accordion-trigger h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--takter-gray-100);
    margin: 0;
    padding-right: 16px;
    flex: 1;
}


.takter-accordion-icon {
    /* font-size: 24px; Removed for SVG */
    width: 24px;
    height: 24px;
    color: var(--takter-main);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: block;
    /* Ensure SVG renders block-level behavior inside span */
}

/* Open State Styling */
.takter-accordion-item[open] .takter-accordion-trigger {
    border-top: 2px solid var(--takter-main);
    /* Active Highlight */
    margin-top: -1px;
    /* Overlap the border */
    padding-top: 23px;
    /* Adjust padding to match height */
}

/* Rotate icon when open */
.takter-accordion-item[open] .takter-accordion-icon {
    transform: rotate(180deg);
}

/* Content Animation Wrapper */
/* Note: <details> animation is tricky. We use the content padding method. */
.takter-accordion-content {
    color: var(--takter-gray-70);
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 24px;
    padding-right: 32px;
    /* Avoid reading wide text */
}

.takter-accordion-content ul {
    margin-top: 16px;
    padding-left: 20px;
}

.takter-accordion-content li {
    margin-bottom: 8px;
}


.takter-card-dark p {
    color: #ced4da;
}

.takter-tags {
    margin-bottom: 24px;
}

.takter-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    margin-right: 8px;
    display: inline-block;
    font-weight: 600;
}

/* Hover effects for colored cards */
.takter-card-teal:hover {
    background-color: #138496;
}

.takter-card-mustard:hover {
    background-color: #c69500;
}

.takter-card-dark:hover {
    background-color: #1a1e21;
}

/* Liquid Glass Utilities (Apple-style) */
.takter-liquid-glass {
    background: rgba(25, 25, 25, 0.6);
    /* Semi-transparent dark base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.takter-liquid-glass--light {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.takter-liquid-glass--medium {
    background: rgba(80, 80, 80, 0.3) !important;
    border-color: rgba(80, 80, 80, 0.3);
}

.takter-liquid-glass--darker {
    background: rgba(40, 40, 40, 0.7) !important;
}

.takter-liquid-glass:hover {
    background: rgba(40, 40, 40, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.takter-glass-card {
    padding: 40px;
    border-radius: 4px;
}

.takter-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--takter-glow-green);
    display: block;
    line-height: 1;
}

.takter-stat-text {
    font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
    font-weight: var(--cds-productive-heading-03-font-weight, 400);
    letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
    line-height: var(--cds-productive-heading-03-line-height, 1.4);
    color: var(--takter-gray-20);
}

.takter-stat-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.takter-stat-item {
    /** display: flex; */
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Modifier for vertical stacking inside the item */
.takter-stat-item--vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.takter-stat-item:hover {
    border-bottom-color: var(--takter-glow-green);
    transform: translateX(8px);
}

.takter-liquid-glass-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Responsive Footer */
/* =========================================
   Refactoring Utilities (Avoid Inline CSS)
   ================================********* */

/* Text Colors */
.takter-text-brand {
    color: var(--takter-main) !important;
}

.takter-text-white {
    color: var(--takter-white) !important;
}

.takter-text-gray-1 {
    color: #f4f4f4 !important;
}

/* Close to gray-10 */
.takter-text-gray-30 {
    color: var(--takter-gray-30) !important;
}

.takter-text-gray-40 {
    color: var(--takter-gray-40) !important;
}

.takter-text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.takter-text-placeholder {
    color: #999 !important;
}

/* Borders & Backgrounds */
.takter-border-gray-30 {
    border-color: var(--takter-gray-30) !important;
}

.takter-border-gray-80 {
    border-color: var(--takter-gray-80) !important;
}

.takter-border-white-10 {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.takter-bg-white-10 {
    background: rgba(255, 255, 255, 0.1);
}

/* Spacing */
.takter-mt-16 {
    margin-top: 16px !important;
}

.takter-p-32 {
    padding: 32px;
}

.takter-radius-4 {
    border-radius: 4px;
}

/* Mockup Components */
.takter-mockup-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific Content Box */
.takter-box-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 4px;
    color: white;
}

.takter-footer-legal span {
    margin-left: 0;
    margin-top: 12px;
}


/* Responsive */
/* Insights Module */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.article-meta {
    font-size: 12px;
    color: var(--takter-gray-60);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 16px;
}

.article-header {
    margin-bottom: 48px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--takter-gray-100);
    margin: 16px 0;
    letter-spacing: -0.5px;
}

.article-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: var(--takter-gray-60);
    margin-top: 16px;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--takter-gray-80);
}

.article-body h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--takter-gray-100);
    margin-top: 48px;
    margin-bottom: 24px;
}

.article-body h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--takter-gray-90);
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body blockquote {
    border-left: 4px solid var(--takter-main);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--takter-gray-60);
}

.article-body hr {
    border: 0;
    border-top: 1px solid var(--takter-gray-20);
    margin: 48px 0;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 32px 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.article-body th,
.article-body td {
    padding: 16px;
    border-bottom: 1px solid var(--takter-gray-20);
    text-align: left;
}

.article-body th {
    background: var(--takter-gray-10);
    font-weight: 600;
    color: var(--takter-gray-100);
}

.takter-nav a:hover {
    color: var(--takter-main);
    background: var(--takter-gray-10);
}

/* Language Switcher Dropdown - Now using Mega Menu style */
.takter-lang-dropdown {
    height: 100%;
}

.takter-lang-dropdown .lang-btn {
    padding: 0 16px;
    gap: 8px;
    background: transparent !important;
    border: none;
    height: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: var(--takter-white);
}

.takter-lang-dropdown .lang-btn svg {
    fill: currentColor;
}

.takter-header.light .takter-lang-dropdown .lang-btn {
    color: var(--takter-gray-100);
}

.lang-mega-menu .takter-mega-container {
    min-height: auto;
}

.lang-mega-menu .takter-mega-sidebar h3 {
    margin-top: 16px;
    padding: 12px 24px;
    border-left: 3px solid var(--takter-main);
    background: var(--takter-gray-10);
    color: var(--takter-main);
    font-size: 14px;
    font-weight: 600;
}

.lang-mega-menu .takter-mega-main {
    padding: 48px;
    flex-grow: 1;
}

.lang-mega-menu .takter-mega-grid {
    grid-template-columns: 1fr;
    width: 100%;
}

.takter-lang-dropdown .lang-btn:hover {
    color: var(--takter-main);
}

.lang-content a.active {
    background-color: var(--takter-gray-10);
    font-weight: 600;
}

.flag-icon-sm {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dropdown Menu */
/* IBM Style Mega Menu */
.takter-dropdown {
    position: static;
}

/* Ensure parents don't constrain the absolute child */
.takter-dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: var(--takter-white);
    width: 100vw;
    left: 0;
    top: 50px;
    box-shadow: 0px 32px 64px 0px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border-top: 1px solid var(--takter-gray-20);
    transition: opacity 0.2s ease, visibility 0.2s;
    padding: 0;
    overflow: hidden;
    right: auto;
    /* Prevent conflict with right: 0 from other rules */
}

/* Open state via JS class */
.takter-dropdown.is-open .takter-dropdown-content {
    visibility: visible;
    opacity: 1;
}

.takter-dropdown.is-open .takter-dropbtn {
    background: transparent !important;
    color: var(--takter-main);
}

.takter-mega-container {
    max-width: 1584px;
    margin: 0 auto;
    display: flex;
    min-height: 480px;
}

/* Sidebar for Categories */
.takter-mega-sidebar {
    width: 256px;
    background: var(--takter-gray-10);
    padding: 32px 0;
    border-right: 1px solid var(--takter-gray-20);
}

.takter-mega-sidebar ul {
    list-style: none;
}

.takter-mega-category-btn {
    width: 100%;
    padding: 12px 24px;
    text-align: left;
    background: none;
    border: none;
    border-left: 4px solid transparent;
    font-size: 14px;
    color: var(--takter-gray-100);
    cursor: pointer;
    transition: all 0.2s;
}

.takter-mega-category-btn:hover,
.takter-mega-category-btn.is-active {
    background: var(--takter-white);
    color: var(--takter-main);
    border-left-color: var(--takter-main);
}

/* Main Content Area */
.takter-mega-main {
    flex: 1;
    padding: 48px 64px;
}

.takter-mega-section {
    display: none;
}

.takter-mega-section.is-active {
    display: block;
}

.takter-mega-section h3 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 32px;
    color: var(--takter-gray-100);
}

.takter-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.takter-mega-item {
    text-decoration: none;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 32px 24px !important;
    transition: background 0.2s;
    border-radius: 4px;
    height: 100% !important;
    min-height: unset !important;
    align-items: flex-start !important;
    border-bottom: none !important;
}

.takter-mega-item:hover {
    background: var(--takter-gray-10);
    color: var(--takter-gray-100) !important;
}

.takter-mega-item-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    color: var(--takter-main);
}

.takter-mega-item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--takter-gray-100);
    margin-bottom: 4px;
}

.takter-mega-item-desc {
    font-size: 14px;
    color: var(--takter-gray-70);
    line-height: 1.4;
}

/* Language Dropdown override (remains small) - REMOVED TO ALLOW MEGA MENU */
.takter-lang-dropdown {
    position: static !important;
}

.takter-lang-dropdown .takter-dropdown-content {
    /* No narrow width anymore, uses .takter-mega-menu defaults */
    border-top: 1px solid var(--takter-gray-20);
}

/* Mobile Media Queries */
.takter-dropdown-content a {
    text-decoration: none;
    display: block;
    font-size: 14px;
    height: auto;
    border-bottom: none;
    color: var(--takter-gray-100);
}

.takter-dropdown-content a:hover {
    background-color: var(--takter-gray-10);
    color: var(--takter-main);
    border-bottom: none;
}

/* ESG Play Specific Styles */

/* Abstract Dashboard Visualization (ESG Play) */
.takter-lead-image-abstract {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.abstract-dashboard {
    width: 100%;
    max-width: 500px;
    background: var(--takter-white);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.dash-header {
    background: var(--takter-gray-10);
    padding: 12px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--takter-gray-20);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.dash-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-graph-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    gap: 8px;
}

.graph-bar {
    flex: 1;
    background: var(--takter-gray-20);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.graph-bar.active {
    background: var(--takter-main);
}

.dash-kpi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--takter-gray-20);
    padding-top: 16px;
}

.dash-kpi span {
    font-size: 14px;
    color: var(--takter-gray-60);
}

.dash-kpi strong {
    font-size: 18px;
    color: var(--takter-success-text);
}

/* Desktop Screen Component (Converge) */
.takter-desktop-screen {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screen-bezel {
    width: 100%;
    background: #616161;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid #646464;
}

.screen-camera {
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.screen-display {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.screen-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stand-neck {
    width: 80px;
    height: 40px;
    background: linear-gradient(to bottom, #282828, #616161);
    margin-top: -2px;
}

.stand-base {
    width: 200px;
    height: 12px;
    background: #4c4c4c;
    border-radius: 4px 4px 0 0;
}

/* App Window Interface Mockup */
.app-window {
    display: flex;
    height: 100%;
    background: #f4f4f4;
}

.app-sidebar {
    width: 60px;
    background: var(--takter-gray-30);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    gap: 16px;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    background: var(--takter-gray-10);
    border-radius: 6px;
}

.sidebar-icon.active {
    background: var(--takter-main);
}

.sidebar-icon.bottom {
    margin-top: auto;
    margin-bottom: 16px;
}

.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 48px;
    background: #fff;
    border-bottom: 1px solid var(--takter-gray-20);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.app-title-bar {
    width: 120px;
    height: 12px;
    background: var(--takter-gray-20);
    border-radius: 6px;
}

.app-user-profile {
    width: 24px;
    height: 24px;
    background: var(--takter-gray-30);
    border-radius: 50%;
}

.app-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.content-row {
    display: flex;
    gap: 16px;
}

.content-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 80px;
}

.content-card.w-60 {
    flex: 6;
}

.content-card.w-40 {
    flex: 4;
}

.content-card.w-100 {
    flex: 1;
    width: 100%;
}

.content-card.h-lg {
    height: 120px;
}

/* Process Steps (Pictogram Style) */
.takter-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
    align-items: start;
}

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

.step-icon {
    font-size: 64px;
    background: linear-gradient(135deg, #0f62fe 0%, #009d9a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
    width: auto;
    height: auto;
}

.step-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--takter-gray-100);
    line-height: 1.3;
}

.step-item p {
    font-size: 16px;
    color: var(--takter-gray-70);
    line-height: 1.5;
}

/* Split Row Layout */
.takter-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.takter-text-col h2 {
    color: var(--takter-white);
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 24px;
}

.takter-text-col p {
    color: var(--takter-gray-30);
    font-size: 18px;
    margin-bottom: 32px;
}

.takter-check-list {
    list-style: none;
}

.takter-check-list li {
    display: grid;
    grid-template-columns: 24px 220px 1fr;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
    color: var(--takter-gray-70);
    font-size: 16px;
    text-align: left;
}

.takter-check-list li svg {
    margin-top: 2px;
}

.takter-check-list li i {
    color: var(--takter-main);
}

.takter-stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--takter-main);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 18px;
    color: var(--takter-white);
}

/* Utilities */
.bg-light {
    background: var(--takter-gray-10);
}

.bg-dark {
    background: var(--takter-gray-100);
}

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

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

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

/* Badge */
.takter-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(253, 116, 0, 0.1);
    color: var(--takter-main);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* Responsive Adjustments for New Components */
/* Home Page Redesign */

/* Hero Section */
.takter-hero-section {
    position: relative;
    min-height: 85vh;
    /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f0f;
    /* Darker background */
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(15, 98, 254, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.takter-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.takter-hero-content h1 {
    font-size: 72px;
    /* Larger title */
    font-weight: 200;
    /* Thinner weight */
    line-height: 1.1;
    color: var(--takter-white);
    margin-bottom: 32px;
    letter-spacing: -2px;
    background: linear-gradient(to bottom right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.takter-hero-content p {
    font-size: 24px;
    color: var(--takter-gray-40);
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.5;
}

/* Customers Section */
.takter-customers-section {
    background: var(--takter-gray-10);
    padding: 40px 0 60px;
    border-bottom: 1px solid #e0e0e0;
}

.takter-customers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.customers-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--takter-gray-80);
    /* Dark text */
    margin-bottom: 32px;
    font-weight: 600;
}

.takter-logo-wall {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.customer-logo,
.takter-logo-wall-item {
    height: 36px;
    min-height: 32px;
    min-width: 100px;
    max-width: 180px;
    color: var(--takter-gray-50);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-logo svg,
.takter-logo-wall-item svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.customer-logo:hover,
.takter-logo-wall-item:hover {
    color: var(--takter-main);
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Logo Wall Section */
.takter-logo-wall-section {
    padding: 48px 24px;
    background: var(--takter-gray-10);
}

.takter-logo-wall-section--dark {
    background: var(--takter-gray-90);
}

.takter-logo-wall-section--dark .takter-logo-wall-title {
    color: var(--takter-gray-40);
}

.takter-logo-wall-section--dark .takter-logo-wall-item {
    color: var(--takter-gray-40);
}

.takter-logo-wall-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.takter-logo-wall-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--takter-gray-50);
    margin-bottom: 32px;
}

/* Bento Grid */
.takter-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 24px;
    margin-top: 48px;
    max-width: 1200px;
    /* Constrain width */
    margin-left: auto;
    margin-right: auto;
}

.bento-card {
    background: var(--takter-white);
    border: 1px solid var(--takter-gray-20);
    border-radius: 24px;
    /* More rounded */
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--takter-main);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card.span-3 {
    grid-column: span 3;
}

.bento-icon {
    margin-bottom: 32px;
    color: var(--takter-main);
    transition: transform 0.3s ease;
}

.bento-card h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--takter-gray-100);
    letter-spacing: -0.5px;
}

.bento-card p {
    font-size: 18px;
    color: var(--takter-gray-60);
    margin-bottom: 32px;
    flex-grow: 1;
    line-height: 1.5;
}

.bento-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Stats Section */
.takter-stats-section {
    background: #111;
    /* Darker stats bg */
    padding: 120px 0;
    color: var(--takter-white);
    border-top: 1px solid #222;
}

.takter-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.thick-stat-number {
    font-size: 96px;
    /* Even bigger */
    font-weight: 100;
    /* Ultra thin */
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -4px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--takter-gray-50);
    font-weight: 600;
}

/* Insights Promo Section */
.takter-insights-promo {
    background: #e5f6fd;
    /* Light blue similar to reference */
    padding: 48px 0;
    border-top: 1px solid #ccecfb;
    border-bottom: 1px solid #ccecfb;
}

.takter-promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ffffff;
}

.promo-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--takter-gray-100);
    margin-bottom: 8px;
}

.promo-content p {
    font-size: 16px;
    color: var(--takter-gray-70);
    margin: 0;
}



/* Insights Trend Card (HTML/CSS Version) */
.insight-trend-card {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 0;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 8px;
}

.card-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.card-header .dot.red {
    background: #FF5F57;
}

.card-header .dot.yellow {
    background: #FFBD2E;
}

.card-header .dot.green {
    background: #28C840;
}

.card-body {
    padding: 24px 20px;
}

.trend-graph-container {
    position: relative;
    height: 200px;
    /* Increased height */
    margin-bottom: 20px;
    width: 100%;
}

.trend-line-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.trend-point {
    animation: pulsePoint 2s infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.trend-tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    transform: translate(-50%, -100%);
    margin-top: -8px;
}

.trend-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.card-footer .label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.card-footer .value {
    font-size: 13px;
    color: #03543F;
    font-weight: 700;
}

/* Orbiting Particles (HTML) */
.orbit-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--takter-main);
    pointer-events: none;
}

.orbit-particle.p1 {
    width: 8px;
    height: 8px;
    top: 20%;
    right: -20px;
    animation: orbit1 12s linear infinite;
}

.orbit-particle.p2 {
    width: 6px;
    height: 6px;
    bottom: 10%;
    left: -10px;
    opacity: 0.6;
    animation: orbit2 8s linear infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulsePoint {
    0% {
        r: 5;
        opacity: 1;
    }

    50% {
        r: 7;
        opacity: 0.7;
    }

    100% {
        r: 5;
        opacity: 1;
    }
}

@keyframes orbit1 {
    0% {
        transform: translate(0, 0) rotate(0deg) translateX(160px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) translateX(160px) rotate(-360deg);
    }
}

/* Simplified orbit for HTML context - actually let's just make them float around the card container */
.takter-lead-image-abstract {
    position: relative;
    /* Ensure particles are relative to this container */
}

.takter-btn-outline:hover {
    background: rgba(253, 116, 0, 0.1);
    gap: 12px;
    /* Arrow movement effect */
}

/* Contact Strip */
.takter-contact-strip {
    background: var(--takter-main);
    padding: 80px 0;
    text-align: center;
    color: var(--takter-white);
}

.contact-container h2 {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

/* Responsive Home */
/* Spacing Utilities */
/* Margin Top */
.margin-top-0 {
    margin-top: 0 !important;
}

.margin-top-8 {
    margin-top: 8px !important;
}

.margin-top-16 {
    margin-top: 16px !important;
}

.margin-top-24 {
    margin-top: 24px !important;
}

.margin-top-32 {
    margin-top: 32px !important;
}

.margin-top-48 {
    margin-top: 48px !important;
}

.margin-top-64 {
    margin-top: 64px !important;
}

.margin-top-80 {
    margin-top: 80px !important;
}

.margin-top-96 {
    margin-top: 96px !important;
}

.margin-top-128 {
    margin-top: 128px !important;
}

/* Margin Bottom */
.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-bottom-8 {
    margin-bottom: 8px !important;
}

.margin-bottom-16 {
    margin-bottom: 16px !important;
}

.margin-bottom-24 {
    margin-bottom: 24px !important;
}

.margin-bottom-32 {
    margin-bottom: 32px !important;
}

.margin-bottom-48 {
    margin-bottom: 48px !important;
}

.margin-bottom-64 {
    margin-bottom: 64px !important;
}

.margin-bottom-80 {
    margin-bottom: 80px !important;
}

.margin-bottom-96 {
    margin-bottom: 96px !important;
}

.margin-bottom-128 {
    margin-bottom: 128px !important;
}

/* Padding Top */
.padding-top-0 {
    padding-top: 0 !important;
}

.padding-top-8 {
    padding-top: 8px !important;
}

.padding-top-16 {
    padding-top: 16px !important;
}

.padding-top-24 {
    padding-top: 24px !important;
}

.padding-top-32 {
    padding-top: 32px !important;
}

.padding-top-48 {
    padding-top: 48px !important;
}

.padding-top-64 {
    padding-top: 64px !important;
}

.padding-top-80 {
    padding-top: 80px !important;
}

.padding-top-96 {
    padding-top: 96px !important;
}

.padding-top-128 {
    padding-top: 128px !important;
}

/* Padding Bottom */
.padding-bottom-0 {
    padding-bottom: 0 !important;
}

.padding-bottom-8 {
    padding-bottom: 8px !important;
}

.padding-bottom-16 {
    padding-bottom: 16px !important;
}

.padding-bottom-24 {
    padding-bottom: 24px !important;
}

.padding-bottom-32 {
    padding-bottom: 32px !important;
}

.padding-bottom-48 {
    padding-bottom: 48px !important;
}

.padding-bottom-64 {
    padding-bottom: 64px !important;
}

.padding-bottom-80 {
    padding-bottom: 80px !important;
}

.padding-bottom-96 {
    padding-bottom: 96px !important;
}

.padding-bottom-128 {
    padding-bottom: 128px !important;
}

/* Lead Capture Form - High Ticket Aesthetic */
.lead-form-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    /* Deep premium background */
    color: var(--takter-white);
    overflow: hidden;
}

.lead-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lead-form-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #a5a5a5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-form-content p {
    font-size: 18px;
    color: var(--takter-gray-30);
    margin-bottom: 32px;
    max-width: 480px;
}

/* Glassmorphism Card */
.lead-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lead-form-group {
    margin-bottom: 20px;
    position: relative;
}

.lead-form-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--takter-gray-40);
    margin-bottom: 8px;
    font-weight: 600;
}

.lead-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--takter-white);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lead-form-input:focus {
    outline: none;
    border-color: var(--takter-main);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(253, 116, 0, 0.1);
}

.lead-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.lead-submit-btn {
    width: 100%;
    background: var(--takter-main);
    color: var(--takter-white);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-submit-btn:hover {
    background: #e06900;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(253, 116, 0, 0.5);
}

.lead-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

.status-success {
    color: var(--takter-success-text);
    background: var(--takter-success-bg);
    padding: 10px;
    border-radius: 4px;
}

.status-error {
    color: var(--takter-error-text);
    background: var(--takter-error-bg);
    padding: 10px;
    border-radius: 4px;
}

/* Success State Overlay */
.lead-success-state {
    text-align: center;
    padding: 40px 0;
    display: none;
    animation: fadeIn 0.5s ease;
}

.lead-success-icon {
    font-size: 64px;
    color: var(--takter-success-text);
    margin-bottom: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Light Header Variant */
.takter-header.light {
    background: var(--takter-white);
    border-bottom: 1px solid var(--takter-gray-20);
}

.takter-header.light .takter-logo {
    color: var(--takter-gray-100);
}

.takter-header.light .takter-nav a {
    color: var(--takter-gray-70);
}

.takter-header.light .takter-nav a:hover {
    color: var(--takter-main);
    background: var(--takter-gray-10);
}

.takter-header.light .takter-dropbtn {
    color: var(--takter-gray-70);
}

.takter-header.light .takter-dropdown:hover .takter-dropbtn {
    color: var(--takter-main);
    background: var(--takter-gray-10);
}

.takter-header.light .lang-btn {
    color: var(--takter-gray-70);
}

.takter-header.light .lang-btn:hover {
    color: var(--takter-main);
}

/* Fix Select Box Styling */
select.lead-form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
    /* Space for arrow */
    cursor: pointer;
}

select.lead-form-input option {
    background-color: #24243e;
    /* Dark background for options */
    color: white;
}

/* Products Page App Window wrapper for Honeycomb */
.takter-app-window-wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.takter-app-window {
    width: 95%;
    /* Mobile first: occupy most of width */
    max-width: 600px;
    /* Cap at desired size */
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.takter-app-window:hover {
    transform: rotateX(0deg) scale(1.02);
}

.app-header {
    background: #f4f4f4;
    padding: 12px 16px;
    display: flex;
    justify-content: flex-start;
    /* Ensure left alignment */
    gap: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.app-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.app-dot.red {
    background: #ff5f57;
}

.app-dot.yellow {
    background: #febc2e;
}

.app-dot.green {
    background: #28c840;
}

.app-content {
    background: #fefefe;
    /* Dark background for the honeycomb contrast */
    height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Honeycomb Grid adjustments for inside window */
.honeycomb-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    /* Slightly smaller to fit */
}

.hex-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -16px;
}

.hex-row:first-child {
    margin-top: 0;
}

.hex {
    width: 100px;
    height: 115px;
    background: rgba(213, 213, 213, 0.881);
    /* Increased contrast from 0.03 */
    margin: 0 4px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
    /* Indicate interactive nature potentially, or keep default */
}

/* Pseudo-element for inner border effect */
.hex::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #616161;
    /* Match container bg */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
    transition: background 0.3s ease;
}

.hex-content {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Highlight the center Logo Hex */
.hex.active {
    background: var(--takter-main);
    filter: drop-shadow(0 0 15px rgba(240, 110, 0, 0.4));
}

.hex.active::before {
    background: linear-gradient(135deg, var(--takter-main) 0%, #d16000 100%);
}

/* Hover effects */
.hex:hover:not(.active) {
    transform: scale(1.05);
}

.hex:hover:not(.active)::before {
    background: var(--takter-glow-green);
    /* Turn fill orange (covering inner dark) */
    opacity: 0.8;
    /* Slight transparency for effect */
}

/* Privacy & Terms Page Styles */
.takter-privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.takter-privacy-content {
    line-height: 1.6;
    color: #333;
}

.takter-privacy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.takter-privacy-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.takter-privacy-content p {
    margin-bottom: 16px;
}

.takter-privacy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.privacy-table th {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    background-color: #f5f5f5;
}

.privacy-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.privacy-helper-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
}

/* Hero Screen Component Styles */
.takter-screen-content {
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.takter-screen-label {
    color: #666666;
    font-size: 0.9rem;
    margin-top: 16px;
}

.takter-screen-content svg {
    height: 80% !important;
    width: auto !important;
}

/* Portable Power Station Hero Styles */
.takter-product-hero-image.transparent {
    background: transparent;
    box-shadow: none;
}

.battery-hero-window-content {
    background: linear-gradient(to bottom, #ffffff, #f0fdf4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.battery-bg-field-left {
    position: absolute;
    bottom: -50px;
    left: -20%;
    width: 140%;
    height: 180px;
    background: #28C840;
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.battery-bg-field-right {
    position: absolute;
    bottom: -20px;
    right: -10%;
    width: 80%;
    height: 120px;
    background: #28C840;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.battery-hero-component {
    position: relative;
    width: 100%;
    max-width: 380px;
    z-index: 1;
    margin-top: 60px;
}

.battery-hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

.text-glow-green {
    color: var(--takter-glow-green) !important;
    fill: var(--takter-glow-green) !important;
}

/* Converge Maturity Model - Refactoring */
/* Hero Graphic Placeholder */
.takter-hero-graphic-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.takter-hero-graphic-placeholder svg {
    opacity: 0.5;
}

.takter-hero-graphic-label {
    position: absolute;
    font-weight: bold;
    color: #333;
}

/* Section Colors */
.takter-section-alt {
    background-color: #FAFAFA;
}

.takter-section-dark {
    background-color: var(--takter-black);
    color: var(--takter-white);
}

.takter-section-dark h2,
.takter-section-dark p {
    color: var(--takter-white) !important;
}

.takter-section-dark .takter-section-header p {
    color: #999 !important;
}

/* Impact Grid */
.takter-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Impact Cards */
.takter-impact-card h3 {
    margin-bottom: 1rem;
}

.takter-impact-card p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-pain {
    color: #D32F2F;
}

.text-solution {
    color: #388E3C;
}

/* Methodology Dark Cards */
.takter-section-dark .takter-card {
    background: var(--takter-black);
    border: 1px solid var(--takter-gray-90);
    color: var(--takter-white);
}

.takter-section-dark .takter-card h3 {
    color: var(--takter-white);
}

.takter-section-dark .takter-card p {
    color: #ccc;
}

/* Step Badge */
.takter-step-badge {
    background: var(--takter-main);
    color: var(--takter-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.takter-step-badge--muted {
    background: var(--takter-gray-50);
    color: var(--takter-white);
}

/* Social Proof */
.takter-section-gray {
    background: #F4F4F4;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.takter-testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.takter-testimonial-icon {
    margin-bottom: 1.5rem;
    fill: var(--takter-main);
}

.takter-testimonial-quote {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.takter-testimonial-author {
    font-weight: bold;
    color: #666;
}

/* Definition Section */
.takter-def-desc {
    max-width: 800px;
    margin: 0 auto;
}

/* Gartner-style Quadrant Chart */
.takter-quadrant-chart {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #fff;
    padding: 20px 20px 40px 40px;
    /* Space for axis labels */
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.quadrant-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border: none;
    position: relative;
    background: transparent;
}

.quadrant-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

/* Quadrant Specific Borders */
.quadrant-area:nth-child(1) {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

/* Challengers - TL */
.quadrant-area:nth-child(2) {
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

/* Leaders - TR */
.quadrant-area:nth-child(3) {
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/* Niche - BL */
.quadrant-area:nth-child(4) {
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/* Visionaries - BR */

.quadrant-label {
    position: absolute;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Label Positioning */
.quadrant-area:nth-child(1) .quadrant-label {
    top: 10px;
    left: 10px;
}

.quadrant-area:nth-child(2) .quadrant-label {
    top: 10px;
    right: 10px;
    text-align: right;
}

.quadrant-area:nth-child(3) .quadrant-label {
    bottom: 10px;
    left: 10px;
}

.quadrant-area:nth-child(4) .quadrant-label {
    bottom: 10px;
    right: 10px;
    text-align: right;
}



/* Dots */
.chart-dot {
    width: 12px;
    height: 12px;
    background: #bbb;
    /* Default competitor color */
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.chart-dot.converge {
    width: 28px;
    height: 28px;
    background: var(--takter-main);
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(240, 110, 0, 0.4);
    z-index: 10;
    /* Position for Leader (TR quadrant, high up/right) */
    top: 25%;
    left: 80%;
}

.chart-dot-label {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.chart-dot:hover .chart-dot-label,
.chart-dot.converge .chart-dot-label {
    opacity: 1;
}

.chart-dot.converge .chart-dot-label {
    background: var(--takter-main);
}

/* Allow matrix to expand container */
.takter-lead-image-abstract.matrix-container {
    height: auto;
    min-height: 400px;
    align-items: flex-start;
    /* Align top */
    padding-top: 20px;
    overflow: visible;
}

/* Scoring Maturity Matrix */
.takter-maturity-matrix {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto auto auto auto 40px;
    /* 5 rows + space for labels */
    gap: 8px;
    align-items: stretch;
    width: 100%;
    margin-top: 20px;
    color: var(--takter-black);
    max-width: 800px;
    /* Constrain width */
    margin-left: auto;
    margin-right: auto;
}

/* Header Row (Top Levels) */
.takter-matrix-header {
    grid-column: 2 / 5;
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
    position: relative;
}

/* Row Labels (Left Side) */
.takter-matrix-row-label {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    padding-right: 16px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    color: var(--takter-blue-dark);
}

.takter-matrix-row-label strong {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.takter-matrix-row-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    /* Line width */
    height: 2px;
    background: var(--takter-blue-dark);
    opacity: 0.5;
    z-index: -1;
}

/* Main Grid Cells */
.takter-matrix-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    color: var(--takter-white);
    background-color: var(--takter-gray-20);
    /* Default inactive gray */
    border-radius: 4px;
    min-height: 80px;
    transition: all 0.2s ease;
}

/* Active Cells (Takter Blue) */
/* Using different opacities for visual depth if desired, or flat?
   User said "colored like the example" which seems flat purple.
   I'll use flat Takter Blue. */
.takter-matrix-cell.is-active {
    background-color: rgba(0, 45, 156, 0.9);
    /* Takter Blue Dark */
}

/* Assessment Callout (Right Side) */
.takter-matrix-callout {
    grid-column: 7 / 8;
    grid-row: 5 / 6;
    /* Aligned with Level 2 row */
    background: var(--takter-blue-dark);
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    position: relative;
    margin-left: 16px;
}

.takter-matrix-callout::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--takter-blue-dark);
}


/* Column Labels (Bottom) */
.takter-matrix-col-labels {
    grid-column: 1 / -1;
    /* Span full width of 5 columns */
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.takter-matrix-col-label {
    background: var(--takter-main);
    /* Using Takter Orange */
    color: white;
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    hyphens: auto;
    border-radius: 4px;
}

/* Responsiveness */
/* =========================================
   Component: Split Intro Section (IBM Style)
   ================================********* */

.takter-section-split {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
}

/* Split Ratio Modifiers */
/* Default (if no modifier) or Explicit 40/60 */
.takter-split--40-60 .takter-split-heading,
.takter-section-split:not([class*="takter-split--"]) .takter-split-heading {
    flex: 4;
}

.takter-split--40-60 .takter-split-content,
.takter-section-split:not([class*="takter-split--"]) .takter-split-content {
    flex: 6;
}

/* 60/40 Split (Inverted) - Heading Wider */
.takter-split--60-40 .takter-split-heading {
    flex: 6;
}

.takter-split--60-40 .takter-split-content {
    flex: 4;
}

/* 50/50 Split */
.takter-split--50-50 .takter-split-heading,
.takter-split--50-50 .takter-split-content {
    flex: 1;
}

.takter-split-heading {
    /* Flex basis handled by parent modifiers */
}

.takter-split-content {
    /* Flex basis handled by parent modifiers */
}

/* 50% / 50% */
.takter-split-layout--50-50 .takter-split-heading,
.takter-split-layout--50-50 .takter-split-content {
    flex: 1;
}

/* 40% / 60% */
.takter-split-layout--40-60 .takter-split-heading {
    flex: 4;
}

.takter-split-layout--40-60 .takter-split-content {
    flex: 6;
}

/* 30% / 70% */
.takter-split-layout--30-70 .takter-split-heading {
    flex: 3;
}

.takter-split-layout--30-70 .takter-split-content {
    flex: 7;
}

/* 60% / 40% */
.takter-split-layout--60-40 .takter-split-heading {
    flex: 6;
}

.takter-split-layout--60-40 .takter-split-content {
    flex: 4;
}

/* 70% / 30% */
.takter-split-layout--70-30 .takter-split-heading {
    flex: 7;
}

.takter-split-layout--70-30 .takter-split-content {
    flex: 3;
}

.takter-split-heading h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

/* Gradient Text Utility */
.takter-text-gradient-brand {
    background: linear-gradient(90deg, var(--takter-orange-dark) 0%, var(--takter-main) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
    /* Ensure gradient applies correctly */
}

/* Link List Component */
.takter-link-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
}

.takter-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--takter-gray-20);
    color: var(--takter-main);
    font-size: 18px;
    transition: all 0.2s ease;
}

.takter-link-item:hover {
    padding-left: 8px;
    /* Subtle movement */
    color: var(--takter-main);
    border-bottom-color: var(--takter-main);
}

.takter-link-item span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.takter-link-icon-pdf::before {
    content: '📄';
    /* Fallback or use SVG */
    font-size: 20px;
    filter: grayscale(100%);
}

/* Responsive Split */
/* CTA Banner Split Component */
.takter-cta-split {
    display: flex;
    width: 100%;
    max-width: 1584px;
    margin: 0 auto;
    min-height: 280px;
    background: var(--takter-gray-80);
    overflow: hidden;
}

.takter-cta-split-image {
    flex: 0 0 40%;
    background-color: var(--takter-gray-10);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.takter-cta-split-content {
    flex: 0 0 60%;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: var(--takter-white);
}

.takter-cta-split-overline {
    font-size: 14px;
    color: var(--takter-gray-30);
    margin-bottom: 32px;
    font-weight: 400;
}

.takter-cta-split-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 300;
    max-width: 500px;
    margin: 0;
}

.takter-cta-split-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 64px;
    width: 280px;
}

.takter-cta-split-btn::after {
    font-size: 20px;
}

/* Responsive CTA Split */

/* =========================================
   13. RESPONSIVE STYLES
   ================================********* */

/* Desktop (min-width: 1025px) */
@media screen and (min-width: 1025px) {
    .lang-mega-menu .takter-mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .takter-nav,
    .takter-nav-links,
    .takter-header-container {
        position: static !important;
    }

    .takter-header {
        position: sticky;
        /* Keep this for visibility */
    }

    .takter-dropdown-content {
        left: 0;
        width: 100vw;
    }
}

/* Large Tablet (max-width: 1056px) */
@media (max-width: 1056px) {
    .takter-lead-space-container {
        grid-template-columns: 1fr;
    }

    .takter-card-group,
    .takter-grid-4,
    .takter-grid-2 {
        grid-template-columns: 1fr !important;
    }

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

    .takter-lead-content h1 {
        font-size: 42px;
    }

    .takter-process-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Removed .step-line styles */
    .takter-row-split {
        grid-template-columns: 1fr;
    }

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

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

    .takter-hero-content h1 {
        font-size: 56px;
    }

    .thick-stat-number {
        font-size: 72px;
    }

    .takter-cta-split-content {
        padding: 32px;
    }

    .takter-cta-split-btn {
        position: static;
        transform: none;
        margin-top: 32px;
        width: 100%;
        max-width: 280px;
    }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .takter-footer-top {
        flex-direction: column;
        gap: 48px;
    }

    .takter-footer-logo {
        flex: 0 0 auto;
    }

    .takter-footer-links {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }

    .takter-mobile-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .takter-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--takter-white);
        flex-direction: column;
        padding: 80px 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 10000;
        overflow-y: auto;
        align-items: flex-start;
    }

    .takter-nav-links.is-open {
        right: 0;
    }

    .takter-nav-links a,
    .takter-dropdown .takter-dropbtn {
        width: 100%;
        height: auto;
        padding: 20px 0;
        border-bottom: 1px solid var(--takter-gray-10);
        font-size: 18px;
        color: var(--takter-gray-100) !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        box-sizing: border-box;
    }

    .takter-lang-dropdown .lang-btn {
        justify-content: flex-start !important;
        gap: 12px;
        color: var(--takter-gray-100) !important;
    }

    .takter-lang-dropdown .lang-btn svg:not(.arrow) {
        margin-left: 0;
        flex-shrink: 0;
    }

    .takter-lang-dropdown .lang-btn .arrow {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .takter-dropdown.is-open .lang-btn .arrow {
        transform: rotate(180deg);
    }

    .takter-dropdown {
        width: 100%;
        position: relative;
    }

    .takter-dropdown-content {
        position: static;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border: none;
        transition: max-height 0.3s ease;
    }

    .takter-dropdown.is-open .takter-dropdown-content {
        max-height: 2000px;
        /* Large enough for content */
    }

    .takter-mega-container {
        flex-direction: column;
        min-height: auto;
    }

    .takter-mega-sidebar {
        width: 100%;
        padding: 16px 0;
        border-right: none;
        border-bottom: 1px solid var(--takter-gray-20);
    }

    .takter-mega-main {
        padding: 24px 0;
    }

    .takter-mega-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .takter-mega-item {
        padding: 16px 0 !important;
    }

    /* Small dropdowns (sustainability, language) */
    .small-dropdown a,
    .lang-content a {
        padding: 12px 16px !important;
        font-size: 16px;
    }
}

/* Tablet Portrait (max-width: 992px) */
@media (max-width: 992px) {
    .takter-maturity-matrix {
        display: flex;
        flex-direction: column;
    }

    .takter-matrix-row-label::after {
        display: none;
    }

    .takter-matrix-col-labels {
        display: none;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .takter-gap-list {
        grid-template-columns: 1fr;
    }

    .takter-logo-wall {
        gap: 32px;
    }

    .customer-logo {
        height: 32px;
    }

    .takter-promo-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .takter-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .lead-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lead-form-content h2 {
        font-size: 36px;
    }

    .takter-impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .takter-section-split {
        flex-direction: column;
        gap: 32px;
    }

    .takter-split-heading,
    .takter-split-content {
        flex: 1 1 100%;
        width: 100%;
    }

    .takter-split-heading h2 {
        font-size: 32px;
    }

    .takter-cta-split {
        flex-direction: column;
    }

    .takter-cta-split-image {
        flex: 0 0 auto;
        height: 200px;
    }

    .takter-cta-split-content {
        flex: 0 0 auto;
    }
}

/* Small Mobile (max-width: 672px) */
@media (max-width: 672px) {
    /* .takter-nav display: none; - REMOVED: Hides hamburger button */

    .takter-lead-content h1 {
        font-size: 32px;
    }

    .takter-section-header h2 {
        font-size: 32px;
    }

    .takter-footer-nav {
        grid-template-columns: 1fr;
    }

    .takter-cta-container {
        flex-direction: column;
        text-align: center;
    }

    .takter-footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .takter-check-list li {
        grid-template-columns: 24px 1fr;
        grid-template-areas: "icon label" ". desc";
        gap: 8px 12px;
    }

    .takter-check-list li svg {
        grid-area: icon;
    }

    .takter-check-list li strong {
        grid-area: label;
    }

    .takter-check-list li .takter-check-desc {
        grid-area: desc;
    }

    .takter-bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.span-2 {
        grid-column: span 1;
    }

    .takter-stats-container {
        flex-direction: column;
        gap: 64px;
    }

    .takter-hero-content h1 {
        font-size: 40px;
    }
}

/* Extra Small (max-width: 600px) */
@media (max-width: 600px) {
    .takter-footer-links {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
        gap: 48px;
    }

    .takter-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .takter-footer-contact,
    .takter-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* =========================================
   14. SCROLL REVEAL SYSTEM (Fade-In on Scroll)
   ========================================= */

/* Base: Hidden state for elements awaiting reveal */
.takter-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

/* Revealed state: Applied when element enters viewport */
.takter-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Variants: Different animation directions */
.takter-reveal--left {
    transform: translateX(-30px);
}

.takter-reveal--left.is-revealed {
    transform: translateX(0);
}

.takter-reveal--right {
    transform: translateX(30px);
}

.takter-reveal--right.is-revealed {
    transform: translateX(0);
}

.takter-reveal--scale {
    transform: scale(0.95);
}

.takter-reveal--scale.is-revealed {
    transform: scale(1);
}

/* Delay modifiers for staggered animations */
.takter-reveal--delay-1 {
    transition-delay: 0.1s;
}

.takter-reveal--delay-2 {
    transition-delay: 0.2s;
}

.takter-reveal--delay-3 {
    transition-delay: 0.3s;
}

.takter-reveal--delay-4 {
    transition-delay: 0.4s;
}

/* Accessibility: Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .takter-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Lazy Load Image Transition */
img[data-src] {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

img[data-src].is-loaded,
img.is-loaded {
    opacity: 1;
}