/* Force header to always be visible */
header.header {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
}

header.header.transparent:not(.filled) {
    background-color: #1a1a1a !important;
}

/* Our Specialization Block */
.specialization-block {
    padding: 120px 0;
    background-color: #1a1a1a;
}

@media (max-width: 1024px) {
    .specialization-block {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .specialization-block {
        padding: 50px 0;
    }
}

.specialization-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 96px;
}

.specialization-header h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.specialization-toggle {
    display: flex;
    gap: 32px;
}

.specialization-toggle .toggle-btn {
    padding: 0;
    background: transparent;
    border: none;
    color: #666;
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.specialization-toggle .toggle-btn.active {
    color: #c8ff00;
}

.specialization-toggle .toggle-btn:hover:not(.active) {
    color: #999;
}

.specialization-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.specialization-grid.active {
    display: grid;
}

.spec-tile {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: transparent;
    border: 1px solid #252525;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 140px;
}

.spec-tile:hover {
    background: #c8ff00;
    border-color: #c8ff00;
}

.spec-tile:hover .spec-num,
.spec-tile:hover .spec-title {
    color: #000;
}

.spec-num {
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #c8ff00;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.spec-title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-left: 8px;
    transition: color 0.3s ease;
}

@media (max-width: 1024px) {
    .specialization-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

@media (max-width: 600px) {
    .specialization-header h2 {
        font-size: 36px;
    }

    .specialization-toggle .toggle-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

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

    .spec-tile {
        padding: 20px;
        min-height: 120px;
    }

    .spec-title {
        font-size: 16px;
    }
}

/* Our Mission Block */
.mission-block {
    padding: 120px 0;
    background-color: #fff;
}

@media (max-width: 1024px) {
    .mission-block {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .mission-block {
        padding: 50px 0;
    }
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 96px;
    gap: 40px;
}

.mission-header h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #000;
    margin: 0;
    flex-shrink: 0;
}

.mission-header .mission-description {
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    max-width: 400px;
    margin: 0;
    text-align: right;
}

.mission-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.mission-item {
    padding: 0;
}

.mission-icon {
    position: relative;
    margin-bottom: 32px;
    width: 80px;
    height: 80px;
}

.mission-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #c8ff00;
    z-index: 0;
}

/* 1st icon - bottom left */
.mission-item:nth-child(1) .mission-icon::before {
    left: 0;
    bottom: 0;
}

/* 2nd icon - top left */
.mission-item:nth-child(2) .mission-icon::before {
    left: 0;
    top: 0;
}

/* 3rd icon - bottom right */
.mission-item:nth-child(3) .mission-icon::before {
    right: 0;
    bottom: 0;
}

/* 4th icon - top left */
.mission-item:nth-child(4) .mission-icon::before {
    left: 0;
    top: 0;
}

.mission-icon img {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.mission-item h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin: 0 0 24px 0;
}

.mission-item p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 1024px) {
    .mission-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-header {
        flex-direction: column;
    }

    .mission-header .mission-description {
        text-align: left;
    }
}

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

    .mission-header h2 {
        font-size: 36px;
    }

    .mission-header .mission-description {
        font-size: 18px;
    }
}

/* About Page Hero */
.hero-about {
    padding: 160px 0 0;
    background-color: #1a1a1a;
    text-align: center;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

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

.hero-about h1 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 24px 0;
}

.hero-about .hero-subtitle {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #888;
    margin: 0;
}

.hero-about #globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 48px;
    }

    .hero-about .hero-subtitle {
        font-size: 18px;
    }
}

/* Numbers Block */
.numbers-block {
    padding-top: 120px !important;
}

.numbered-boxes-wrap .single-box h2,
.numbered-boxes-wrap .single-box span {
    font-family: "Power Grotesk", sans-serif;
}

/* Project Detail Page */
.page-template-case-study {
    background-color: #fff;
}

.page-template-case-study .page-title-block {
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 60px;
}

.page-template-case-study .title-block-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.page-template-case-study .title-block-wrap .lh-side h1 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    color: #1d1d1d;
    margin: 0;
}

.page-template-case-study .title-block-wrap .rh-side {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.page-template-case-study .project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-template-case-study .project-meta-item .meta-label {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #686868;
    margin: 0;
}

.page-template-case-study .project-meta-item .meta-value {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1d1d1d;
    margin: 0;
}

.page-template-case-study .project-meta-item .meta-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-template-case-study .project-meta-item .meta-links a {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1d1d1d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-template-case-study .project-meta-item .meta-links a:hover {
    color: #686868;
}

.page-template-case-study .back-btn-wrapper {
    margin-bottom: 40px;
}

.page-template-case-study .back-button {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    color: #1d1d1d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-template-case-study .back-button::before {
    content: '←';
}

.page-template-case-study .back-button:hover {
    color: #686868;
}

.page-template-case-study .featured-image {
    margin-top: 40px;
}

.page-template-case-study .featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-template-case-study .texts-block {
    padding: 80px 0;
    background-color: #fff;
}

.page-template-case-study .texts-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.page-template-case-study .texts-wrapper .left-side-content h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1d1d1d;
    margin: 0;
}

.page-template-case-study .texts-wrapper .right-side-content {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1d1d1d;
}

.page-template-case-study .texts-wrapper .right-side-content p {
    margin: 0 0 20px 0;
}

.page-template-case-study .texts-wrapper .right-side-content p:last-child {
    margin-bottom: 0;
}

.page-template-case-study .content-wrapper.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.page-template-case-study .related-projects-block {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-template-case-study .related-projects-block h2 {
    font-family: "Power Grotesk", sans-serif;
    color: #fff;
}

/* Codex Landing */
.page-template-codex-landing {
    background: #fff;
}

.page-template-codex-landing section {
    position: relative;
}

.page-template-codex-landing .bg-dark {
    background-color: #1a1a1a;
}

.codex-hero {
    padding: 170px 0 110px;
    overflow: hidden;
}

.codex-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(200, 255, 0, 0.18), transparent 26%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 22%);
    pointer-events: none;
}

.codex-hero-grid,
.codex-about-grid,
.codex-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 48px;
    align-items: start;
}

.codex-kicker,
.codex-card-number,
.codex-process-step span,
.panel-label {
    font-family: "Power Grotesk", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.codex-kicker {
    color: #c8ff00;
    font-size: 14px;
    margin: 0 0 20px;
}

.codex-hero-copy h1,
.codex-section-head h2,
.codex-about-copy h2,
.codex-contact-copy h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 400;
    margin: 0;
}

.codex-hero-copy h1 {
    color: #fff;
    max-width: 900px;
}

.codex-lead,
.codex-section-head p,
.codex-about-copy p,
.codex-contact-copy p,
.codex-service-card p,
.codex-result-item p,
.codex-process-step p,
.codex-about-point p,
.codex-faq-item p,
.panel-metric p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.codex-lead {
    color: #a5a5a5;
    max-width: 720px;
    margin-top: 28px;
}

.codex-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.page-template-codex-landing .codex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-template-codex-landing .codex-btn span {
    color: inherit;
}

.page-template-codex-landing .codex-btn:hover {
    transform: translateY(-1px);
}

.page-template-codex-landing .codex-btn-primary {
    background: #c8ff00;
    border-color: #c8ff00;
    color: #111;
}

.page-template-codex-landing .codex-btn-primary:hover {
    background: #daf022;
    border-color: #daf022;
}

.page-template-codex-landing .codex-btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.page-template-codex-landing .codex-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.codex-mini-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    padding: 0;
    margin: 40px 0 0;
}

.codex-mini-points li {
    color: #fff;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.codex-hero-panel {
    position: sticky;
    top: 120px;
}

.codex-panel-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.panel-label {
    display: block;
    color: #c8ff00;
    font-size: 13px;
    margin-bottom: 28px;
}

.panel-metric + .panel-metric {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-metric strong {
    display: block;
    font-family: "Power Grotesk", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}

.panel-metric p {
    color: #d1d1d1;
}

.codex-services,
.codex-process,
.codex-faq {
    padding: 110px 0;
}

.codex-results,
.codex-about,
.codex-contact {
    padding: 110px 0;
}

.codex-section-head {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}

.codex-section-head h2,
.codex-about-copy h2,
.codex-contact-copy h2 {
    color: #111;
}

.codex-section-head p {
    color: #5f5f5f;
    max-width: 520px;
}

.codex-section-head.on-dark h2,
.codex-about-copy h2,
.codex-contact-copy h2 {
    color: #fff;
}

.codex-section-head.on-dark p,
.codex-about-copy p,
.codex-contact-copy p {
    color: #b8b8b8;
}

.codex-services-grid,
.codex-results-grid,
.codex-process-grid,
.codex-faq-list {
    display: grid;
    gap: 24px;
}

.codex-services-grid,
.codex-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.codex-process-grid,
.codex-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.codex-service-card,
.codex-result-item,
.codex-process-step,
.codex-about-point,
.codex-faq-item,
.codex-contact-form {
    border: 1px solid #e7e7e7;
    background: #fff;
}

.codex-service-card,
.codex-result-item,
.codex-process-step,
.codex-faq-item {
    padding: 28px;
}

.codex-service-card h3,
.codex-result-item h3,
.codex-process-step h3,
.codex-about-point h3,
.codex-faq-item h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 400;
    color: #111;
    margin: 14px 0 14px;
}

.codex-card-number,
.codex-process-step span {
    color: #6c6c6c;
    font-size: 13px;
}

.codex-service-card p,
.codex-process-step p,
.codex-faq-item p {
    color: #5f5f5f;
}

.codex-results .codex-result-item {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
}

.codex-results .codex-result-item h3 {
    color: #fff;
}

.codex-results .codex-result-item p {
    color: #bbbbbb;
}

.codex-about-points {
    display: grid;
    gap: 20px;
}

.codex-about-point {
    padding: 24px 28px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.codex-about-point h3 {
    color: #fff;
    margin-top: 0;
}

.codex-about-point p {
    color: #c2c2c2;
}

.codex-contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.codex-contact-links a {
    width: fit-content;
    color: #c8ff00;
    font-family: "Power Grotesk", sans-serif;
    text-decoration: none;
}

.codex-contact-form {
    padding: 32px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.codex-contact-form form {
    display: grid;
    gap: 18px;
}

.codex-form-field {
    display: grid;
    gap: 10px;
}

.codex-form-field label {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
}

.codex-form-field input,
.codex-form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    outline: none;
}

.codex-form-field textarea {
    min-height: 144px;
    resize: vertical;
}

.codex-form-field input::placeholder,
.codex-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.codex-form-field input:focus,
.codex-form-field textarea:focus {
    border-color: #c8ff00;
    background: rgba(255, 255, 255, 0.1);
}

.codex-form-note {
    margin-top: 4px;
}

.codex-form-note p,
.codex-form-note a {
    color: #b8b8b8;
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.codex-btn-submit {
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .codex-hero-copy h1,
    .codex-section-head h2,
    .codex-about-copy h2,
    .codex-contact-copy h2 {
        font-size: 48px;
    }

    .codex-services-grid,
    .codex-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .codex-hero-grid,
    .codex-about-grid,
    .codex-contact-grid,
    .codex-section-head,
    .codex-process-grid,
    .codex-faq-list {
        grid-template-columns: 1fr;
    }

    .codex-hero-panel {
        position: static;
    }

    .codex-section-head {
        display: grid;
    }
}

@media (max-width: 640px) {
    .codex-hero,
    .codex-services,
    .codex-results,
    .codex-process,
    .codex-about,
    .codex-faq,
    .codex-contact {
        padding: 80px 0;
    }

    .codex-hero {
        padding-top: 140px;
    }

    .codex-hero-copy h1,
    .codex-section-head h2,
    .codex-about-copy h2,
    .codex-contact-copy h2 {
        font-size: 36px;
    }

    .codex-mini-points,
    .codex-services-grid,
    .codex-results-grid {
        grid-template-columns: 1fr;
    }

    .codex-service-card,
    .codex-result-item,
    .codex-process-step,
    .codex-faq-item,
    .codex-contact-form,
    .codex-panel-card {
        padding: 22px;
    }

    .page-template-codex-landing .codex-btn {
        width: 100%;
    }
}

.page-template-case-study .related-projects-block .title-buttons-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.page-template-case-study .related-projects-block .link-arrow-right {
    font-family: "Power Grotesk", sans-serif;
    color: #fff;
    text-decoration: none;
}

.page-template-case-study .related-projects-block .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.page-template-case-study .related-projects-block .grid-card {
    background: #222;
    overflow: hidden;
}

.page-template-case-study .related-projects-block .grid-card a {
    text-decoration: none;
    display: block;
}

.page-template-case-study .related-projects-block .grid-card .image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.page-template-case-study .related-projects-block .grid-card .texts {
    padding: 24px;
}

.page-template-case-study .related-projects-block .grid-card .simple-text {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #c8ff00;
    display: block;
    margin-bottom: 12px;
}

.page-template-case-study .related-projects-block .grid-card .title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 8px 0;
}

.page-template-case-study .related-projects-block .grid-card .description {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0;
}

@media (max-width: 1024px) {
    .page-template-case-study .title-block-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-template-case-study .title-block-wrap .rh-side {
        flex-wrap: wrap;
        gap: 30px;
    }

    .page-template-case-study .texts-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-template-case-study .content-wrapper.two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-template-case-study .title-block-wrap .lh-side h1 {
        font-size: 32px;
    }

    .page-template-case-study .related-projects-block .grid-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Services Index Page (marketing/, services/) */
.page-template-services-index {
    background-color: #1a1a1a;
}

.hero-services-index {
    padding: 160px 0 80px;
    background-color: #1a1a1a;
}

.hero-services-index .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-services-index .text-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 60px;
}

.hero-services-index .title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.hero-services-index .links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
}

.hero-services-index .link-wrapper .link {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.hero-services-index .link-wrapper .link:hover {
    color: #c8ff00;
}

.services-list-index {
    padding: 60px 0 100px;
    background-color: #1a1a1a;
}

.services-list-index .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-list-index .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background: transparent;
    border: 1px solid #333;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 220px;
}

.services-list-index .service-card:hover {
    background: #c8ff00;
    border-color: #c8ff00;
}

.services-list-index .service-card:hover .service-title,
.services-list-index .service-card:hover .service-description {
    color: #000;
}

.services-list-index .service-card:hover .service-arrow svg path {
    stroke: #000;
}

.services-list-index .service-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-list-index .service-title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.services-list-index .service-description {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    color: #888;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.services-list-index .service-arrow {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.services-list-index .service-arrow svg {
    width: 24px;
    height: 24px;
}

.services-list-index .service-arrow svg path {
    stroke: #fff;
    transition: stroke 0.3s ease;
}

/* Services Index Contact Form */
.page-template-services-index .customizable-form {
    background-color: #fff;
    padding: 100px 0;
}

.page-template-services-index .customizable-form .title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #1d1d1d;
}

.page-template-services-index .customizable-form .content-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.page-template-services-index .customizable-form .lh-side {
    max-width: 500px;
}

.page-template-services-index .customizable-form .rh-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-template-services-index .customizable-form .rh-content svg {
    width: 100%;
    max-width: 430px;
    height: auto;
}

@media (max-width: 1024px) {
    .hero-services-index .text-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-services-index .title {
        font-size: 48px;
    }

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

    .page-template-services-index .customizable-form .content-holder {
        grid-template-columns: 1fr;
    }

    .page-template-services-index .customizable-form .rh-side {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-services-index {
        padding: 120px 0 60px;
    }

    .hero-services-index .title {
        font-size: 36px;
    }

    .hero-services-index .link-wrapper .link {
        font-size: 16px;
    }

    .services-list-index .services-grid {
        grid-template-columns: 1fr;
    }

    .services-list-index .service-card {
        min-height: 180px;
        padding: 24px;
    }

    .services-list-index .service-title {
        font-size: 22px;
    }

    .page-template-services-index .customizable-form .title {
        font-size: 32px;
    }
}

/* Get in Touch Page - Offices Block */
.offices-block {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.offices-block h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 60px 0;
}

.offices-block .offices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.offices-block .office-region h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #c8ff00;
    margin: 0 0 20px 0;
}

.offices-block .office-region ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offices-block .office-region li {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    color: #888;
    margin-bottom: 12px;
}

@media (max-width: 1200px) {
    .offices-block .offices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .offices-block h2 {
        font-size: 32px;
    }

    .offices-block .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .offices-block .offices-grid {
        grid-template-columns: 1fr;
    }
}

/* Claude Landing - same styles as Codex but with claude- prefix */
.page-template-claude-landing {
    background: #fff;
}

.page-template-claude-landing section {
    position: relative;
}

.page-template-claude-landing .bg-dark {
    background-color: #1a1a1a;
}

.claude-hero {
    padding: 170px 0 110px;
    overflow: hidden;
}

.claude-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(200, 255, 0, 0.18), transparent 26%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 22%);
    pointer-events: none;
}

.claude-hero-grid,
.claude-about-grid,
.claude-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 48px;
    align-items: start;
}

.claude-kicker,
.claude-card-number,
.claude-process-step span,
.panel-label {
    font-family: "Power Grotesk", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.claude-kicker {
    color: #c8ff00;
    font-size: 14px;
    margin: 0 0 20px;
}

.claude-hero-copy h1,
.claude-section-head h2,
.claude-about-copy h2,
.claude-contact-copy h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 400;
    margin: 0;
}

.claude-hero-copy h1 {
    color: #fff;
    max-width: 900px;
}

.claude-lead,
.claude-section-head p,
.claude-about-copy p,
.claude-contact-copy p,
.claude-service-card p,
.claude-result-item p,
.claude-process-step p,
.claude-about-point p,
.claude-faq-item p,
.panel-metric p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.claude-lead {
    color: #a5a5a5;
    max-width: 720px;
    margin-top: 28px;
}

.claude-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.claude-mini-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    padding: 0;
    margin: 40px 0 0;
}

.claude-mini-points li {
    color: #fff;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.claude-hero-panel {
    position: sticky;
    top: 120px;
}

.claude-panel-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.panel-label {
    display: block;
    color: #c8ff00;
    font-size: 13px;
    margin-bottom: 28px;
}

.panel-metric + .panel-metric {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-metric strong {
    display: block;
    font-family: "Power Grotesk", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}

.panel-metric p {
    color: #d1d1d1;
}

.claude-services,
.claude-process,
.claude-faq {
    padding: 110px 0;
}

.claude-results,
.claude-about,
.claude-contact {
    padding: 110px 0;
}

.claude-section-head {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}

.claude-section-head h2,
.claude-about-copy h2,
.claude-contact-copy h2 {
    color: #111;
}

.claude-section-head p {
    color: #5f5f5f;
    max-width: 520px;
}

.claude-section-head.on-dark h2,
.claude-about-copy h2,
.claude-contact-copy h2 {
    color: #fff;
}

.claude-section-head.on-dark p,
.claude-about-copy p,
.claude-contact-copy p {
    color: #b8b8b8;
}

.claude-services-grid,
.claude-results-grid,
.claude-process-grid,
.claude-faq-list {
    display: grid;
    gap: 24px;
}

.claude-services-grid,
.claude-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.claude-process-grid,
.claude-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.claude-service-card,
.claude-result-item,
.claude-process-step,
.claude-about-point,
.claude-faq-item,
.claude-contact-form {
    border: 1px solid #e7e7e7;
    background: #fff;
}

.claude-service-card,
.claude-result-item,
.claude-process-step,
.claude-faq-item {
    padding: 28px;
}

.claude-service-card h3,
.claude-result-item h3,
.claude-process-step h3,
.claude-about-point h3,
.claude-faq-item h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 400;
    color: #111;
    margin: 14px 0 14px;
}

.claude-card-number,
.claude-process-step span {
    color: #6c6c6c;
    font-size: 13px;
}

.claude-service-card p,
.claude-process-step p,
.claude-faq-item p {
    color: #5f5f5f;
}

.claude-results .claude-result-item {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
}

.claude-results .claude-result-item h3 {
    color: #fff;
}

.claude-results .claude-result-item p {
    color: #bbbbbb;
}

.claude-about-points {
    display: grid;
    gap: 20px;
}

.claude-about-point {
    padding: 24px 28px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.claude-about-point h3 {
    color: #fff;
    margin-top: 0;
}

.claude-about-point p {
    color: #c2c2c2;
}

.claude-contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.claude-contact-links a {
    width: fit-content;
    color: #c8ff00;
    font-family: "Power Grotesk", sans-serif;
    text-decoration: none;
}

.claude-contact-form {
    padding: 32px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.claude-contact-form .input-wrapper input,
.claude-contact-form .input-wrapper textarea {
    width: 100%;
}

.claude-contact-form .input-wrapper + .input-wrapper {
    margin-top: 18px;
}

.claude-contact-form .additional-text {
    margin-top: 20px;
}

.claude-contact-form .additional-text p,
.claude-contact-form .additional-text a {
    color: #b8b8b8;
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.claude-contact-form .input-submit {
    margin-top: 28px;
}

@media (max-width: 1100px) {
    .claude-hero-copy h1,
    .claude-section-head h2,
    .claude-about-copy h2,
    .claude-contact-copy h2 {
        font-size: 48px;
    }

    .claude-services-grid,
    .claude-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .claude-hero-grid,
    .claude-about-grid,
    .claude-contact-grid,
    .claude-section-head,
    .claude-process-grid,
    .claude-faq-list {
        grid-template-columns: 1fr;
    }

    .claude-hero-panel {
        position: static;
    }

    .claude-section-head {
        display: grid;
    }
}

@media (max-width: 640px) {
    .claude-hero,
    .claude-services,
    .claude-results,
    .claude-process,
    .claude-about,
    .claude-faq,
    .claude-contact {
        padding: 80px 0;
    }

    .claude-hero {
        padding-top: 140px;
    }

    .claude-hero-copy h1,
    .claude-section-head h2,
    .claude-about-copy h2,
    .claude-contact-copy h2 {
        font-size: 36px;
    }

    .claude-mini-points,
    .claude-services-grid,
    .claude-results-grid {
        grid-template-columns: 1fr;
    }

    .claude-service-card,
    .claude-result-item,
    .claude-process-step,
    .claude-faq-item,
    .claude-contact-form,
    .claude-panel-card {
        padding: 22px;
    }
}
