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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: #111;
    background: #fff;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   HEADER
   ========================================= */

.site-header {
    background: #000;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.header-logo img {
    height: 100px;
    width: auto;
    filter: invert(1);
}

.header-brand-text {
    font-family: 'Raleway', sans-serif;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.header-brand-text span {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.header-cpa-logo {
    display: flex;
    align-items: center;
}

.header-cpa-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lang-toggle a {
    color: #888;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid #333;
    transition: all 0.2s;
}

.lang-toggle a.active {
    color: #fff;
    border-color: #fff;
}

.lang-toggle a:hover {
    color: #fff;
    border-color: #fff;
}

/* =========================================
   SPECIALIZATIONS (main page link blocks)
   ========================================= */

.specializations-section {
    padding: 80px 24px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.spec-card {
    display: block;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.spec-card:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.spec-card:hover::before {
    transform: scaleX(1);
    background: #fff;
}

.spec-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
}

.spec-card:hover .spec-label {
    color: #888;
}

.spec-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.spec-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.spec-card:hover .spec-desc {
    color: #ccc;
}

.spec-cta {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spec-card:hover .spec-cta {
    color: #fff;
}

.spec-cta::after {
    content: '→';
    transition: transform 0.2s ease;
}

.spec-card:hover .spec-cta::after {
    transform: translateX(4px);
}

/* =========================================
   PROCESS SECTION (How we work)
   ========================================= */

.process-section {
    padding: 80px 24px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.process-banner {
    max-width: 900px;
    margin: 0 auto 56px;
    padding: 28px 32px;
    background: #000;
    color: #fff;
    text-align: center;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.process-banner-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.process-banner-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.process-banner-text em {
    font-style: normal;
    background: #fff;
    color: #000;
    padding: 2px 10px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    counter-reset: process-step;
}

.process-step {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 32px 24px;
    position: relative;
    transition: all 0.25s ease;
    counter-increment: process-step;
}

.process-step:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.process-step::before {
    content: counter(process-step, decimal-leading-zero);
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 16px;
}

.process-step:hover::before {
    color: #888;
}

.process-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.25px;
    margin-bottom: 10px;
}

.process-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
}

.process-step:hover .process-desc {
    color: #ccc;
}

.process-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
    background: transparent;
}

.process-step:last-child .process-arrow {
    display: none;
}

@media (max-width: 968px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   "WE ARE NOT" CALLOUT
   ========================================= */

.callout-section {
    padding: 60px 24px;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.callout-box {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 2px solid #000;
}

.callout-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 16px;
}

.callout-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #222;
    font-weight: 500;
}

.callout-text strong {
    background: #000;
    color: #fff;
    padding: 2px 8px;
}

/* =========================================
   AUDIENCES (CPE + Garderies)
   ========================================= */

.audiences-section {
    padding: 80px 24px;
    background: #fff;
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.audience-card {
    padding: 40px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
}

.audience-tag {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    margin-bottom: 20px;
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.audience-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.audience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #000;
    font-weight: 700;
}

.audience-list li:last-child {
    border-bottom: none;
}

@media (max-width: 968px) {
    .specializations-grid,
    .audiences-grid {
        grid-template-columns: 1fr;
    }
    .header-right {
        flex-direction: column;
        gap: 12px;
    }
}

/* =========================================
   HERO
   ========================================= */

.hero {
    padding: 40px 24px 60px;
    text-align: center;
    background: #000;
    color: #fff;
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero h1 .rotating-text {
    display: inline;
    color: #fff;
    transition: opacity 0.3s ease;
}

.hero-tagline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #888;
    margin-top: 16px;
    letter-spacing: -0.5px;
    text-align: center;
}

.hero-sub {
    font-size: 1.1rem;
    color: #999;
    max-width: 680px;
    margin: 24px auto 20px;
    font-weight: 400;
}

.hero-geo {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero-geo strong {
    color: #fff;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 2px solid #fff;
}

.cta-button:hover {
    background: transparent;
    color: #fff;
}

/* =========================================
   TICKER
   ========================================= */

.ticker-section {
    background: #f5f5f5;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 35s linear infinite;
}

.ticker-wrapper:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    flex-shrink: 0;
    padding: 16px 48px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    border-right: 1px solid #e0e0e0;
}

.ticker-item strong {
    color: #000;
}

/* =========================================
   DIFFERENTIATOR (Three Pillars)
   ========================================= */

.differentiator-section {
    padding: 80px 24px;
    background: #fff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.pillar {
    text-align: center;
    padding: 32px 24px;
}

.pillar-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 16px;
    line-height: 1;
}

.pillar-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.25px;
}

.pillar-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* =========================================
   SERVICES / PROMISES GRID
   ========================================= */

.services-section {
    padding: 80px 24px;
    background: #f5f5f5;
}

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

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
    margin-top: 48px;
}

.promise-card {
    background: #fff;
    padding: 32px;
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
}

.promise-card:hover {
    background: #000;
    color: #fff;
}

.promise-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 12px;
}

.promise-card:hover .promise-number {
    color: #666;
}

.promise-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.25px;
}

.promise-brief {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.promise-card:hover .promise-brief {
    color: #aaa;
}

.promise-expand {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.promise-card:hover .promise-expand {
    display: block;
}

.promise-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: #ddd;
    transition: transform 0.3s ease;
}

.promise-card:hover .promise-icon {
    color: #fff;
    transform: rotate(45deg);
}

/* =========================================
   SOFTWARE SHOWCASE
   ========================================= */

.software-section {
    padding: 80px 24px;
    background: #fff;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.software-card {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.software-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #000;
}

.software-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    margin-bottom: 20px;
}

.software-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.software-full {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 24px;
}

.software-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.software-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
}

.feature-tag {
    font-size: 0.8rem;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
}

.software-value {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.software-value strong {
    color: #000;
}

/* =========================================
   INDUSTRIES
   ========================================= */

.industries-section {
    padding: 60px 24px;
    background: #000;
    border-top: none;
}

.industries-header {
    text-align: center;
    margin-bottom: 24px;
}

.industries-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
}

.industries-subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 16px;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.industry-tag {
    padding: 10px 20px;
    border: 1px solid #444;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    transition: all 0.2s;
}

.industry-tag:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* =========================================
   WHY DIFFERENT (6 Ps)
   ========================================= */

.diff-section {
    padding: 80px 24px;
    background: #f5f5f5;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.diff-item {
    text-align: center;
    padding: 24px 16px;
}

.diff-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
}

.diff-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diff-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
    padding: 80px 24px;
    background: #000;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.cta-section p {
    color: #aaa;
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 0.9rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-button-dark {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 16px 48px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.cta-button-dark:hover {
    background: #333;
    color: #fff;
}

.contact-line {
    margin-top: 24px;
    font-size: 0.85rem;
    color: #888;
}

.contact-line a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    padding: 40px 24px;
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-brand {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-geo {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.75rem;
    color: #888;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 968px) {
    .site-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .header-logo {
        flex-direction: column;
        gap: 12px;
    }
    .header-logo img {
        height: 80px;
    }
    .header-brand-text {
        text-align: center;
    }
    .header-cpa-logo img {
        height: 80px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .software-grid,
    .software-grid-3 {
        grid-template-columns: 1fr;
    }
    .promises-grid {
        grid-template-columns: 1fr;
    }
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
    .software-features {
        grid-template-columns: 1fr;
    }
    .ticker-wrapper {
        animation: ticker 18s linear infinite;
    }
}
