/* 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;
    }
}

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

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

.page-template-codex-v2-landing .bg-dark {
    background-color: #171717;
}

.codex-v2-hero {
    padding: 168px 0 96px;
    overflow: hidden;
}

.codex-v2-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(200, 255, 0, 0.22), transparent 18%),
        radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 60%);
    pointer-events: none;
}

.codex-v2-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: center;
}

.codex-v2-kicker {
    margin: 0 0 18px;
    color: #c8ff00;
    font-family: "Power Grotesk", sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.codex-v2-kicker-dark {
    color: #111;
}

.codex-v2-copy h1,
.codex-v2-ribbon-copy h2,
.codex-v2-showcase-main h2,
.codex-v2-process-head h2,
.codex-v2-contact-copy h2 {
    margin: 0;
    font-family: "Power Grotesk", sans-serif;
    font-size: 68px;
    line-height: 0.98;
    font-weight: 400;
}

.codex-v2-copy h1,
.codex-v2-ribbon-copy h2 {
    color: #fff;
}

.codex-v2-showcase-main h2,
.codex-v2-process-head h2,
.codex-v2-contact-copy h2 {
    color: #111;
}

.codex-v2-lead,
.codex-v2-ribbon-copy p,
.codex-v2-showcase-main p,
.codex-v2-card p,
.codex-v2-mini-card p,
.codex-v2-note p,
.codex-v2-contact-copy p,
.codex-v2-step p {
    margin: 0;
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.55;
}

.codex-v2-lead {
    margin-top: 22px;
    max-width: 620px;
    color: #b9b9b9;
}

.codex-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

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

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

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

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

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

.page-template-codex-v2-landing .codex-v2-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.02);
}

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

.codex-v2-composition {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        #1f1f1f;
    overflow: hidden;
}

.codex-v2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
}

.codex-v2-orb-main {
    width: 260px;
    height: 260px;
    top: 58px;
    right: 48px;
    background: radial-gradient(circle at 30% 30%, #f8ffd1, #c8ff00 58%, rgba(200, 255, 0, 0.08) 100%);
}

.codex-v2-orb-small {
    width: 110px;
    height: 110px;
    bottom: 62px;
    left: 54px;
    background: radial-gradient(circle at 35% 35%, #ffffff, #69d0ff 68%, rgba(105, 208, 255, 0.06) 100%);
}

.codex-v2-stack {
    position: absolute;
    top: 52px;
    left: 42px;
    display: grid;
    gap: 12px;
    max-width: 220px;
}

.codex-v2-chip {
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-family: "Power Grotesk", sans-serif;
    font-size: 15px;
    line-height: 1;
}

.codex-v2-note {
    position: absolute;
    max-width: 240px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.codex-v2-note span {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-family: "Power Grotesk", sans-serif;
    font-size: 22px;
    line-height: 1.1;
}

.codex-v2-note p {
    color: #c8c8c8;
}

.codex-v2-note-top {
    top: 210px;
    left: 36px;
}

.codex-v2-note-bottom {
    right: 38px;
    bottom: 44px;
}

.codex-v2-offer,
.codex-v2-showcase,
.codex-v2-process,
.codex-v2-contact {
    padding: 96px 0;
}

.codex-v2-ribbon,
.codex-v2-metrics {
    padding: 72px 0;
}

.codex-v2-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}

.codex-v2-card {
    padding: 30px;
    border: 1px solid #d8d3c8;
    background: #f9f6ef;
}

.codex-v2-card-accent {
    background: #c8ff00;
    border-color: #c8ff00;
}

.codex-v2-index {
    display: inline-block;
    margin-bottom: 14px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #111;
}

.codex-v2-card h2 {
    margin: 0 0 14px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 32px;
    line-height: 1.04;
    font-weight: 400;
    color: #111;
}

.codex-v2-card p {
    color: #373737;
}

.codex-v2-ribbon-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: end;
}

.codex-v2-ribbon-points {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 14px 18px;
}

.codex-v2-ribbon-points p {
    margin: 0;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.1;
}

.codex-v2-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.codex-v2-showcase-main {
    padding: 34px;
    background: #fff;
    border: 1px solid #d8d3c8;
    position: sticky;
    top: 104px;
}

.codex-v2-showcase-main p {
    margin-top: 18px;
    color: #4d4d4d;
}

.codex-v2-showcase-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.codex-v2-mini-card {
    min-height: 220px;
    padding: 24px;
    background: linear-gradient(180deg, #ffffff, #f4eee3);
    border: 1px solid #d8d3c8;
}

.codex-v2-mini-card:nth-child(2) {
    background: linear-gradient(180deg, #ffffff, #eef9ff);
}

.codex-v2-mini-card:nth-child(3) {
    background: linear-gradient(180deg, #ffffff, #f5ffd7);
}

.codex-v2-mini-card:nth-child(4) {
    background: linear-gradient(180deg, #ffffff, #f8ecff);
}

.codex-v2-mini-card h3 {
    margin: 0 0 14px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 30px;
    line-height: 1.02;
    font-weight: 400;
    color: #111;
}

.codex-v2-mini-card p {
    color: #4d4d4d;
}

.codex-v2-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.codex-v2-metric {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.codex-v2-metric strong {
    display: block;
    margin-bottom: 8px;
    color: #c8ff00;
    font-family: "Power Grotesk", sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
}

.codex-v2-metric span {
    color: #d2d2d2;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

.codex-v2-process-head {
    margin-bottom: 28px;
}

.codex-v2-process-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.codex-v2-step {
    padding: 20px;
    background: #fff;
    border: 1px solid #d8d3c8;
}

.codex-v2-step span {
    display: block;
    margin-bottom: 12px;
    color: #7b7b7b;
    font-family: "Power Grotesk", sans-serif;
    font-size: 13px;
    line-height: 1;
}

.codex-v2-step p {
    color: #111;
}

.codex-v2-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
    gap: 24px;
    align-items: start;
    padding: 32px;
    border: 1px solid #d8d3c8;
    background: linear-gradient(180deg, #fff8ea, #ffffff 42%);
}

.codex-v2-contact-copy p:not(.codex-v2-kicker) {
    margin-top: 18px;
    color: #4d4d4d;
}

.codex-v2-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 28px;
}

.codex-v2-links a {
    color: #111;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.24);
}

.codex-v2-form-wrap {
    padding: 22px;
    background: #111;
}

.codex-v2-form {
    display: grid;
    gap: 16px;
}

.codex-v2-field {
    display: grid;
    gap: 8px;
}

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

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

.codex-v2-field input:focus,
.codex-v2-field textarea:focus {
    border-color: #c8ff00;
}

.codex-v2-note {
    position: relative;
}

.codex-v2-form .codex-v2-note {
    padding: 0;
    max-width: none;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

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

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

@media (max-width: 1100px) {
    .codex-v2-copy h1,
    .codex-v2-ribbon-copy h2,
    .codex-v2-showcase-main h2,
    .codex-v2-process-head h2,
    .codex-v2-contact-copy h2 {
        font-size: 52px;
    }

    .codex-v2-grid,
    .codex-v2-ribbon-grid,
    .codex-v2-showcase-grid,
    .codex-v2-contact-shell {
        grid-template-columns: 1fr;
    }

    .codex-v2-showcase-main {
        position: static;
    }

    .codex-v2-ribbon-points,
    .codex-v2-metrics-grid,
    .codex-v2-process-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .codex-v2-stage,
    .codex-v2-showcase-list {
        grid-template-columns: 1fr;
    }

    .codex-v2-composition {
        min-height: 460px;
    }

    .codex-v2-note-bottom {
        right: 22px;
        bottom: 24px;
    }
}

@media (max-width: 640px) {
    .codex-v2-hero,
    .codex-v2-offer,
    .codex-v2-ribbon,
    .codex-v2-showcase,
    .codex-v2-metrics,
    .codex-v2-process,
    .codex-v2-contact {
        padding: 80px 0;
    }

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

    .codex-v2-copy h1,
    .codex-v2-ribbon-copy h2,
    .codex-v2-showcase-main h2,
    .codex-v2-process-head h2,
    .codex-v2-contact-copy h2 {
        font-size: 38px;
    }

    .codex-v2-ribbon-points,
    .codex-v2-metrics-grid,
    .codex-v2-process-row {
        grid-template-columns: 1fr;
    }

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

    .codex-v2-composition,
    .codex-v2-card,
    .codex-v2-showcase-main,
    .codex-v2-mini-card,
    .codex-v2-metric,
    .codex-v2-step,
    .codex-v2-contact-shell,
    .codex-v2-form-wrap {
        padding: 22px;
    }
}

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

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

.page-template-codex-v3-landing .bg-dark {
    background-color: #111;
}

.codex-v3-hero {
    padding: 168px 0 96px;
    overflow: hidden;
}

.codex-v3-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 24%, rgba(200, 255, 0, 0.18), transparent 20%),
        radial-gradient(circle at 76% 18%, rgba(102, 208, 255, 0.18), transparent 18%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 62%);
    pointer-events: none;
}

.codex-v3-frame {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
    gap: 32px;
    align-items: stretch;
}

.codex-v3-kicker {
    margin: 0 0 16px;
    color: #c8ff00;
    font-family: "Power Grotesk", sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.codex-v3-kicker-dark {
    color: #111;
}

.codex-v3-left h1,
.codex-v3-break-copy h2,
.codex-v3-duo-card h2,
.codex-v3-contact-copy h2 {
    margin: 0;
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    line-height: 0.96;
    font-weight: 400;
}

.codex-v3-left h1,
.codex-v3-break-copy h2,
.codex-v3-duo-card h2 {
    color: #fff;
}

.codex-v3-contact-copy h2 {
    color: #111;
}

.codex-v3-lead,
.codex-v3-track-item p,
.codex-v3-break-list p,
.codex-v3-tile p,
.codex-v3-proof-text p,
.codex-v3-duo-card p,
.codex-v3-contact-copy p,
.codex-v3-note p {
    margin: 0;
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.55;
}

.codex-v3-lead {
    margin-top: 22px;
    max-width: 560px;
    color: #bebebe;
}

.codex-v3-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

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

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

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

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

.page-template-codex-v3-landing .codex-v3-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.03);
}

.codex-v3-right {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    grid-template-rows: 1.15fr 0.85fr;
    gap: 18px;
    min-height: 520px;
}

.codex-v3-poster {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.codex-v3-poster span {
    color: rgba(17, 17, 17, 0.72);
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    line-height: 1;
}

.codex-v3-poster strong {
    font-family: "Power Grotesk", sans-serif;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 400;
    color: #111;
}

.codex-v3-poster-main {
    grid-row: 1 / 3;
    background: linear-gradient(180deg, #fff, #e8f7ff 58%);
}

.codex-v3-poster-accent {
    background: #c8ff00;
}

.codex-v3-poster-soft {
    background: linear-gradient(180deg, #ffffff, #f6eaff 60%);
}

.codex-v3-flow,
.codex-v3-mosaic,
.codex-v3-proof,
.codex-v3-contact {
    padding: 88px 0;
}

.codex-v3-break,
.codex-v3-duo {
    padding: 74px 0;
}

.codex-v3-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.codex-v3-track-item {
    padding: 24px;
    border: 1px solid #d0c7b8;
    background: #f6f1e7;
}

.codex-v3-track-item span,
.codex-v3-index {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 13px;
    color: #767676;
}

.codex-v3-track-item h2,
.codex-v3-tile h2 {
    margin: 0 0 12px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
    color: #111;
}

.codex-v3-break-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
}

.codex-v3-break-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.codex-v3-break-list p {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.codex-v3-mosaic-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 18px;
}

.codex-v3-tile {
    min-height: 250px;
    padding: 24px;
    border: 1px solid #d0c7b8;
    background: #ffffff;
}

.codex-v3-tile-tall {
    min-height: 518px;
    background: linear-gradient(180deg, #ffffff, #efe9dd 62%);
}

.codex-v3-tile-lime {
    background: #c8ff00;
}

.codex-v3-tile-blue {
    background: linear-gradient(180deg, #ffffff, #e7f8ff 65%);
}

.codex-v3-tile-dark {
    background: #171717;
    border-color: #171717;
}

.codex-v3-tile-dark h2,
.codex-v3-tile-dark p,
.codex-v3-tile-dark .codex-v3-index {
    color: #fff;
}

.codex-v3-proof-shell {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 0.6fr)) minmax(0, 1.2fr);
    gap: 18px;
    align-items: stretch;
}

.codex-v3-proof-stat,
.codex-v3-proof-text {
    padding: 24px;
    border: 1px solid #d0c7b8;
    background: #f6f1e7;
}

.codex-v3-proof-stat strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 52px;
    line-height: 1;
    font-weight: 400;
    color: #111;
}

.codex-v3-proof-stat span {
    color: #4d4d4d;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
}

.codex-v3-proof-text {
    background: #fff;
}

.codex-v3-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.codex-v3-duo-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.codex-v3-duo-card p:last-child {
    margin-top: 18px;
    color: #bdbdbd;
}

.codex-v3-duo-card-accent {
    background: #c8ff00;
    border-color: #c8ff00;
}

.codex-v3-duo-card-accent .codex-v3-kicker,
.codex-v3-duo-card-accent h2,
.codex-v3-duo-card-accent p {
    color: #111;
}

.codex-v3-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.codex-v3-contact-copy {
    padding: 28px;
    border: 1px solid #d0c7b8;
    background: #fff7e7;
}

.codex-v3-contact-copy p:not(.codex-v3-kicker) {
    margin-top: 18px;
    color: #4d4d4d;
}

.codex-v3-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 24px;
}

.codex-v3-links a {
    color: #111;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.24);
}

.codex-v3-form-shell {
    padding: 22px;
    background: #111;
}

.codex-v3-form {
    display: grid;
    gap: 16px;
}

.codex-v3-field {
    display: grid;
    gap: 8px;
}

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

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

.codex-v3-field input:focus,
.codex-v3-field textarea:focus {
    border-color: #c8ff00;
}

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

.codex-v3-btn-submit {
    width: 100%;
}

@media (max-width: 1100px) {
    .codex-v3-left h1,
    .codex-v3-break-copy h2,
    .codex-v3-duo-card h2,
    .codex-v3-contact-copy h2 {
        font-size: 56px;
    }

    .codex-v3-frame,
    .codex-v3-break-grid,
    .codex-v3-proof-shell,
    .codex-v3-contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .codex-v3-track,
    .codex-v3-break-list,
    .codex-v3-duo-grid,
    .codex-v3-right {
        grid-template-columns: 1fr;
    }

    .codex-v3-right {
        grid-template-rows: auto;
        min-height: auto;
    }

    .codex-v3-poster-main {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .codex-v3-hero,
    .codex-v3-flow,
    .codex-v3-break,
    .codex-v3-mosaic,
    .codex-v3-proof,
    .codex-v3-duo,
    .codex-v3-contact {
        padding: 80px 0;
    }

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

    .codex-v3-left h1,
    .codex-v3-break-copy h2,
    .codex-v3-duo-card h2,
    .codex-v3-contact-copy h2 {
        font-size: 40px;
    }

    .codex-v3-mosaic-grid {
        grid-template-columns: 1fr;
    }

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

    .codex-v3-track-item,
    .codex-v3-tile,
    .codex-v3-proof-stat,
    .codex-v3-proof-text,
    .codex-v3-duo-card,
    .codex-v3-contact-copy,
    .codex-v3-form-shell,
    .codex-v3-poster {
        padding: 22px;
    }

    .codex-v3-tile-tall {
        min-height: 280px;
    }
}

/* Claude V2 Landing - Bright & Bold Design */
.page-template-claude-v2-landing {
    background: #fff;
}

.cv2-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.cv2-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.15), transparent 70%);
    border-radius: 50%;
}

.cv2-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cv2-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(200, 255, 0, 0.15);
    border: 1px solid #c8ff00;
    color: #c8ff00;
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.cv2-hero h1 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 96px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    margin: 0 0 24px 0;
}

.cv2-hero h1 .cv2-highlight {
    color: #c8ff00;
    position: relative;
}

.cv2-hero-lead {
    font-family: "Power Grotesk", sans-serif;
    font-size: 28px;
    color: #999;
    margin: 0 0 48px 0;
}

.cv2-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.cv2-btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #c8ff00;
    color: #000;
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cv2-btn-primary:hover {
    background: #d4ff33;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 255, 0, 0.3);
}

.cv2-btn-ghost {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cv2-btn-ghost:hover {
    background: #fff;
    color: #000;
}

.cv2-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

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

.cv2-stat strong {
    display: block;
    font-family: "Power Grotesk", sans-serif;
    font-size: 48px;
    color: #c8ff00;
    font-weight: 500;
    margin-bottom: 8px;
}

.cv2-stat span {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    color: #666;
}

.cv2-services {
    padding: 120px 0;
    background: #fff;
}

.cv2-section-title {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 80px 0;
    color: #000;
}

.cv2-services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.cv2-service-big {
    grid-row: span 2;
    background: #f5f5f5;
    padding: 48px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.cv2-service-big:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.cv2-service-small {
    background: #f5f5f5;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.cv2-service-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.cv2-service-highlight {
    background: #c8ff00;
}

.cv2-service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.cv2-service-big h3,
.cv2-service-small h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 16px 0;
    color: #000;
}

.cv2-service-small h3 {
    font-size: 24px;
}

.cv2-service-big p,
.cv2-service-small p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.cv2-service-small p {
    font-size: 16px;
}

.cv2-process {
    padding: 120px 0;
    background: #1a1a1a;
}

.cv2-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.cv2-process-header h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 16px 0;
}

.cv2-process-header p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    color: #666;
    margin: 0;
}

.cv2-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cv2-step {
    flex: 1;
    text-align: center;
}

.cv2-step-number {
    width: 80px;
    height: 80px;
    background: #c8ff00;
    color: #000;
    font-family: "Power Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
}

.cv2-step h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px 0;
}

.cv2-step p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    color: #999;
    margin: 0;
}

.cv2-step-arrow {
    font-size: 48px;
    color: #c8ff00;
    flex-shrink: 0;
}

.cv2-why {
    padding: 120px 0;
    background: #fff;
}

.cv2-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cv2-why-text h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #000;
    margin: 0 0 40px 0;
}

.cv2-why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.cv2-why-list li {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.cv2-why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8ff00;
    font-size: 28px;
    font-weight: bold;
}

.cv2-link-arrow {
    display: inline-block;
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cv2-link-arrow:hover {
    color: #c8ff00;
    transform: translateX(8px);
}

.cv2-why-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cv2-feature-box {
    background: #f5f5f5;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.cv2-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.cv2-box-1 {
    grid-column: span 2;
    background: #c8ff00;
}

.cv2-box-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
}

.cv2-feature-box p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.cv2-cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #c8ff00 0%, #d4ff33 100%);
}

.cv2-cta-content {
    text-align: center;
}

.cv2-cta-content h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 500;
    color: #000;
    margin: 0 0 16px 0;
}

.cv2-cta-content p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 28px;
    color: #333;
    margin: 0 0 48px 0;
}

.cv2-btn-large {
    padding: 24px 56px;
    font-size: 20px;
}

.cv2-btn-primary.cv2-btn-large {
    background: #000;
    color: #c8ff00;
}

.cv2-btn-primary.cv2-btn-large:hover {
    background: #1a1a1a;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cv2-contact {
    padding: 120px 0;
    background: #1a1a1a;
}

.cv2-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.cv2-contact-info h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 24px 0;
}

.cv2-contact-desc {
    font-family: "Power Grotesk", sans-serif;
    font-size: 20px;
    color: #999;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.cv2-contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cv2-contact-link {
    font-family: "Power Grotesk", sans-serif;
    font-size: 18px;
    color: #c8ff00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cv2-contact-link:hover {
    color: #d4ff33;
    transform: translateX(8px);
}

.cv2-contact-form {
    background: #fff;
    padding: 48px;
}

.cv2-form-row {
    margin-bottom: 20px;
}

.cv2-input {
    width: 100%;
    padding: 16px 20px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    border: 2px solid #e5e5e5;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}

.cv2-input:focus {
    outline: none;
    border-color: #c8ff00;
}

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

.cv2-btn-full {
    width: 100%;
    margin-bottom: 16px;
}

.cv2-form-note {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0;
}

.cv2-form-note a {
    color: #000;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px) {
    .cv2-hero h1 {
        font-size: 72px;
    }

    .cv2-section-title,
    .cv2-process-header h2,
    .cv2-why-text h2,
    .cv2-cta-content h2,
    .cv2-contact-info h2 {
        font-size: 48px;
    }

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

    .cv2-service-big {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .cv2-hero {
        padding: 140px 0 80px;
    }

    .cv2-hero h1 {
        font-size: 48px;
    }

    .cv2-hero-lead {
        font-size: 20px;
    }

    .cv2-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cv2-stats {
        flex-direction: column;
        gap: 32px;
    }

    .cv2-services,
    .cv2-process,
    .cv2-why,
    .cv2-contact {
        padding: 80px 0;
    }

    .cv2-section-title,
    .cv2-process-header h2,
    .cv2-why-text h2,
    .cv2-cta-content h2,
    .cv2-contact-info h2 {
        font-size: 36px;
    }

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

    .cv2-service-big {
        grid-column: span 1;
    }

    .cv2-process-steps {
        flex-direction: column;
        gap: 32px;
    }

    .cv2-step-arrow {
        transform: rotate(90deg);
    }

    .cv2-why-grid,
    .cv2-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cv2-why-list li {
        font-size: 18px;
    }

    .cv2-contact-form {
        padding: 32px;
    }
}

/* Claude V3 Landing - Brutalist/Swiss Design */
.page-template-claude-v3-landing {
    background: #fff;
}

.cv3-label {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.cv3-hero {
    padding: 200px 0 160px;
    background: #fff;
    border-bottom: 2px solid #000;
}

.cv3-hero-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 80px;
    align-items: start;
}

.cv3-hero h1 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 0.95;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.cv3-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #000;
}

.cv3-stat-item {
    display: flex;
    flex-direction: column;
}

.cv3-stat-num {
    font-family: "Power Grotesk", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.cv3-stat-label {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cv3-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cv3-btn {
    display: inline-block;
    padding: 20px 32px;
    background: #000;
    color: #fff;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #000;
    transition: all 0.2s ease;
}

.cv3-btn:hover {
    background: #fff;
    color: #000;
}

.cv3-hero-note {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #999;
    margin: 0;
}

.cv3-intro {
    padding: 160px 0;
    background: #000;
    color: #fff;
}

.cv3-intro .cv3-label {
    color: #fff;
}

.cv3-intro-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 120px;
}

.cv3-intro h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin: 0 0 32px 0;
    text-transform: uppercase;
}

.cv3-intro-text {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    line-height: 1.4;
    color: #ccc;
    margin: 0;
    max-width: 800px;
}

.cv3-services {
    padding: 160px 0;
    background: #fff;
}

.cv3-services-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #000;
    border: 2px solid #000;
}

.cv3-service-block {
    background: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    transition: background 0.2s ease;
}

.cv3-service-block:hover {
    background: #f5f5f5;
}

.cv3-service-num {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.cv3-service-block h3 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.cv3-service-block p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.cv3-approach {
    padding: 160px 0;
    background: #000;
    color: #fff;
}

.cv3-approach .cv3-label {
    color: #fff;
}

.cv3-approach-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 120px;
}

.cv3-approach h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin: 0 0 64px 0;
    text-transform: uppercase;
}

.cv3-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 64px;
}

.cv3-approach-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cv3-approach-item strong {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.cv3-approach-item p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #999;
    margin: 0;
}

.cv3-value {
    padding: 160px 0;
    background: #fff;
}

.cv3-value-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    align-items: start;
}

.cv3-value h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 0.95;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.cv3-value-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cv3-value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.cv3-value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cv3-value-icon {
    font-size: 32px;
    color: #000;
    flex-shrink: 0;
    font-weight: bold;
}

.cv3-value-item strong {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

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

.cv3-contact {
    padding: 160px 0;
    background: #000;
    color: #fff;
}

.cv3-contact .cv3-label {
    color: #fff;
}

.cv3-contact-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 120px;
}

.cv3-contact h2 {
    font-family: "Power Grotesk", sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin: 0 0 48px 0;
    text-transform: uppercase;
}

.cv3-form {
    max-width: 800px;
}

.cv3-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.cv3-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cv3-form-group label {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cv3-form-input,
.cv3-form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: "Power Grotesk", sans-serif;
    font-size: 16px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.2s ease;
}

.cv3-form-input:focus,
.cv3-form-textarea:focus {
    outline: none;
    background: #fff;
    color: #000;
}

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

.cv3-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.cv3-form-note {
    font-family: "Power Grotesk", sans-serif;
    font-size: 12px;
    color: #999;
    margin: 0;
}

.cv3-form-note a {
    color: #fff;
    text-decoration: underline;
}

.cv3-footer {
    padding: 80px 0;
    background: #fff;
    border-top: 2px solid #000;
}

.cv3-footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cv3-footer-brand strong {
    font-family: "Power Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    display: block;
    text-transform: uppercase;
}

.cv3-footer-brand p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    color: #666;
    margin: 4px 0 0 0;
}

.cv3-footer-links {
    display: flex;
    gap: 32px;
}

.cv3-footer-links a {
    font-family: "Power Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.cv3-footer-links a:hover {
    color: #666;
}

.cv3-footer-copy p {
    font-family: "Power Grotesk", sans-serif;
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .cv3-hero h1 {
        font-size: 80px;
    }

    .cv3-intro h2,
    .cv3-approach h2,
    .cv3-contact h2 {
        font-size: 56px;
    }

    .cv3-value h2 {
        font-size: 64px;
    }

    .cv3-hero-layout,
    .cv3-intro-layout,
    .cv3-approach-layout,
    .cv3-value-layout,
    .cv3-contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .cv3-hero {
        padding: 140px 0 100px;
    }

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

    .cv3-intro,
    .cv3-services,
    .cv3-approach,
    .cv3-value,
    .cv3-contact {
        padding: 100px 0;
    }

    .cv3-intro h2,
    .cv3-approach h2,
    .cv3-contact h2 {
        font-size: 40px;
    }

    .cv3-value h2 {
        font-size: 48px;
    }

    .cv3-intro-text {
        font-size: 18px;
    }

    .cv3-services-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cv3-service-block {
        padding: 32px;
        border-bottom: 2px solid #000;
    }

    .cv3-approach-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cv3-form-grid {
        grid-template-columns: 1fr;
    }

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

    .cv3-footer-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .cv3-footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
