/* Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-text-primary: #111;
    --color-text-secondary: #333;
    --color-bg: #fff;
    --container-max-width: 1400px;
}

body {
    color: var(--color-text-primary);
    background-color: var(--color-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Header - Standard */
header.site-header {
    width: 100% !important;
    height: 100px !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    z-index: 1000 !important;
}

header.site-header .container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 100% !important;
}

.logo img {
    height: 50px !important;
    width: auto !important;
    display: block !important;
}

.main-nav ul {
    list-style: none !important;
    display: flex !important;
    gap: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-nav a {
    text-decoration: none !important;
    color: #000 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    transition: opacity 0.2s !important;
}

.main-nav a:hover {
    opacity: 0.6 !important;
}

.main-nav a.active {
    opacity: 1 !important;
    border-bottom: 2px solid #000 !important;
    padding-bottom: 5px !important;
}

/* Header Responsive */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Subpage Header Overrides (Inverted) */
body:has(.subpage-hero) .mobile-toggle span {
    background-color: #fff;
}

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

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

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

@media (max-width: 1024px) {
    header.site-header {
        height: 80px !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }

    .main-nav a {
        font-size: 32px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

    body.nav-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    /* Adjusted for absolute header */
    padding-bottom: 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 90px;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -5px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.hero-description {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 10px;
}

.hero-description p {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
    max-width: 450px;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Hero Responsiveness */
@media (max-width: 1400px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: clamp(60px, 8vw, 96px);
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding-top: 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .hero-description {
        text-align: left;
        justify-self: start;
        max-width: 100%;
    }

    .hero-title {
        white-space: normal;
        font-size: 64px;
    }

    /* Force toggle to black when menu is open on subpages */
    .mobile-toggle.active span {
        background-color: #000 !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
        white-space: normal;
    }

    .hero-description {
        text-align: left;
        align-items: flex-start;
    }

    .hero-description p {
        font-size: 16px;
    }
}

.cta-link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-link .arrow {
    display: inline-block;
    /* Fix for transform */
    font-size: 18px;
    transition: transform 0.2s;
}

.cta-link:hover .arrow {
    transform: translateX(4px);
}

.cta-button-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ba192d;
    color: #fff;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-red:hover {
    background-color: #9c1525;
    color: #fff;
}

/* Hero Image */
.hero-image-wrapper {
    width: 100%;
    height: 400px;
    /* Fixed height as requested */
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Hero Marquee */
.hero-marquee-wrapper {
    width: 100%;
    background-color: #1a1a1a;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.hero-marquee {
    display: flex;
    white-space: nowrap;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0 50px;
}

.marquee-dot {
    color: #fff;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }
}

@media (max-width: 1024px) {
    .site-header {
        padding: 20px 0;
        height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .hero-title {
        white-space: normal;
        font-size: 60px;
    }

    .hero-description {
        justify-self: start;
        text-align: left;
        align-self: flex-start;
        max-width: 100%;
    }

    .cta-link {
        align-self: flex-start;
    }

    .hero-image-wrapper {
        height: 50vh;
    }
}

/* Stats Section */
.stats-section {
    background-color: #111111;
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1e1e1e;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.stats-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    max-width: 420px;
}

.stats-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    color: #ebebeb;
    max-width: 520px;
}

.stats-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    width: 100%;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #f7f7f7;
    line-height: 1.25;
}

.stat-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #ebebeb;
}

.watermark-logo {
    position: absolute;
    bottom: -50px;
    right: -50px;
    pointer-events: none;
    z-index: 0;
}

.watermark-logo img {
    width: 360px;
    height: auto;
    display: block;
    opacity: 0.12;
}

/* Dark background: white logo */
.stats-section .watermark-logo img {
    filter: brightness(0) invert(1);
}

/* Light background: dark logo */
.work-with-section .watermark-logo img {
    filter: brightness(0);
}

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

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

/* We Do Section */
/* We Do Section */
.wedo-section {
    background-color: #fff;
    padding: 150px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wedo-menu {
    opacity: 0;
    text-align: center;
    transition: all 1s ease 0.2s;
    z-index: 3;
    transform: scale(0.9);
}

.wedo-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wedo-menu-item {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    line-height: 1.1;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
}

.wedo-menu-item:hover,
.wedo-menu-item.active {
    color: #000;
}

.wedo-menu-item:focus-visible {
    outline: none;
    color: #000;
    transform: scale(1.02);
}

.wedo-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    min-height: 480px;
}

.wedo-text {
    font-size: 200px;
    font-weight: 700;
    color: #000;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    position: absolute;
    z-index: 2;
}

.wedo-text.text-left {
    transform: translateX(-55%);
}

.wedo-text.text-right {
    transform: translateX(55%);
}

.wedo-detail {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.wedo-detail-text {
    left: 0;
    width: 320px;
}

.wedo-detail-image {
    right: 0;
    width: 320px;
}

.wedo-detail-panel,
.wedo-image-panel {
    display: none;
}

.wedo-detail-panel.active,
.wedo-image-panel.active {
    display: block;
}

.wedo-detail-panel p {
    font-size: 22px;
    line-height: 1.55;
    color: #333;
    margin: 0;
}

.wedo-image-panel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Active State Animation */
.wedo-section.active .wedo-text {
    color: #e0e0e0;
}

.wedo-section.active .text-left {
    transform: translateX(-450px);
}

.wedo-section.active .text-right {
    transform: translateX(450px);
}

.wedo-section.active .wedo-menu {
    opacity: 1;
    transform: scale(1);
}

.wedo-section.has-selection .wedo-detail {
    opacity: 1;
}

.wedo-section.has-selection .wedo-text {
    display: none;
}

.wedo-section.has-selection .wedo-content {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(300px, 420px) minmax(260px, 320px);
    gap: 56px;
    align-items: center;
    max-width: 1280px;
    min-height: 0;
}

.wedo-section.has-selection .wedo-menu {
    opacity: 1;
    transform: none;
}

.wedo-section.has-selection .wedo-menu-item {
    color: #d7d7d7;
}

.wedo-section.has-selection .wedo-menu-item.active {
    color: #000;
}

.wedo-section.has-selection .wedo-detail {
    position: static;
    transform: none;
    pointer-events: auto;
    width: auto;
}

.wedo-section.has-selection .wedo-detail-text {
    max-width: 320px;
}

.wedo-section.has-selection .wedo-detail-image {
    width: 320px;
    justify-self: end;
}

.wedo-section.has-selection .wedo-image-panel img {
    width: 320px;
    height: 430px;
}

@media (max-width: 1024px) {
    .wedo-content {
        min-height: auto;
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .wedo-text {
        position: static;
        transform: none !important;
        font-size: 80px;
        line-height: 1;
        color: #000 !important;
    }

    .wedo-menu {
        opacity: 1;
        transform: none;
        order: 2;
    }

    .wedo-menu-item {
        font-size: 26px;
    }

    .wedo-detail {
        position: static;
        transform: none;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        order: 3;
    }

    .wedo-section:not(.has-selection) .wedo-detail {
        display: none;
    }

    .wedo-detail-text {
        max-width: 520px;
        margin: 0 auto;
    }

    .wedo-detail-panel p {
        font-size: 18px;
    }

    .wedo-detail-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .wedo-image-panel img {
        height: auto;
    }

    .wedo-section.has-selection .wedo-content {
        display: flex;
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .wedo-section.has-selection .wedo-detail-text {
        max-width: 520px;
        margin: 0 auto;
    }

    .wedo-section.has-selection .wedo-detail-image {
        width: auto;
        justify-self: center;
    }

    .wedo-section.has-selection .wedo-image-panel img {
        width: 100%;
        max-width: 360px;
        height: auto;
    }

    .wedo-section.has-selection .wedo-detail {
        opacity: 1;
        pointer-events: auto;
        display: block;
    }

    .wedo-section.has-selection .wedo-detail-text {
        order: 1;
    }

    .wedo-section.has-selection .wedo-menu {
        order: 2;
    }

    .wedo-section.has-selection .wedo-detail-image {
        order: 3;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Tablet: WE (left) + menu (center) + DO (right) */
    .wedo-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        justify-content: stretch;
        align-items: center;
        column-gap: 26px;
        row-gap: 0;
        text-align: center;
        width: 100%;
    }

    .wedo-text {
        font-size: 62px;
        line-height: 0.95;
    }

    .wedo-text.text-left {
        grid-column: 1;
        grid-row: 1;
        justify-self: end;
    }

    .wedo-text.text-right {
        grid-column: 3;
        grid-row: 1;
        justify-self: start;
    }

    .wedo-menu {
        grid-column: 2;
        grid-row: 1;
        order: unset;
        justify-self: center;
    }

    .wedo-menu ul {
        gap: 14px;
    }

    .wedo-menu-item {
        font-size: 34px;
        line-height: 1.02;
    }
}

@media (max-width: 768px) {
    .wedo-section {
        padding: 72px 0;
    }

    .wedo-content {
        gap: 20px;
    }

    .wedo-text {
        font-size: 56px;
    }

    .wedo-menu ul {
        gap: 14px;
    }

    .wedo-menu-item {
        font-size: 28px;
        line-height: 1.08;
    }

    .wedo-detail-panel p {
        font-size: 17px;
        line-height: 1.55;
    }

    .wedo-section.has-selection .wedo-image-panel img {
        max-width: 320px;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .wedo-section {
        padding: 56px 0;
    }

    .wedo-text {
        font-size: 44px;
    }

    .wedo-menu-item {
        font-size: 30px;
    }

    .wedo-detail-panel p {
        font-size: 16px;
    }

    .wedo-section.has-selection .wedo-image-panel img {
        max-width: 280px;
    }

}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.how-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.how-description {
    max-width: 500px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: right;
}

.steps-grid-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.steps-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.steps-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.steps-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.steps-grid {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
}

.step-card {
    position: relative;
    flex: 1;
    height: 350px;
    background: transparent;
    box-shadow: 0 0 0 10px #fff;
}

.step-card-low {
    margin-top: 100px;
}

.step-card-high {
    margin-top: -50px;
}

.step-card::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: -10px;
    right: -10px;
    height: 1000px;
    background: #fff;
    z-index: 10;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 1000px;
    background: #fff;
    z-index: 10;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    z-index: 3;
    line-height: 1;
}

.step-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    z-index: 20;
    width: calc(100% - 40px);
}

/* Premium Grid Version (Used on Expertise/Subpages) */
.steps-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #eee;
    border: 1px solid #eee;
}

.steps-grid-premium .step-card {
    background: #fff;
    padding: 60px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    /* Reset shadow */
    flex: none;
    /* Reset flex */
}

.steps-grid-premium .step-card::before,
.steps-grid-premium .step-card::after {
    display: none;
    /* Remove staggered blockers */
}

.steps-grid-premium .step-card:hover {
    background: #fcfcfc;
}

.steps-grid-premium .step-number {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: #f5f5f5;
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    z-index: 1;
    transition: all 0.4s ease;
}

.steps-grid-premium .step-card:hover .step-number {
    color: #eee;
    transform: translateY(-10px);
}

.steps-grid-premium .step-label {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 2;
    margin-top: auto;
    line-height: 1.2;
    letter-spacing: -0.5px;
    width: auto;
}

.step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

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

/* Projects Section */
.projects-section {
    width: 100%;
    background-color: #0b0b0b;
    /* Very dark, almost black */
    color: #fff;
    overflow: hidden;
}

.projects-container {
    display: flex;
    height: 100vh;
    min-height: 900px;
}

.projects-content {
    flex: 0 0 50%;
    padding: 86px 90px 76px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.section-label {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    color: #505257;
    letter-spacing: 0.045em;
    margin-bottom: 28px;
    display: block;
}

.projects-heading {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.24;
    max-width: 600px;
    margin-bottom: 128px;
    color: #c2c5ca;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: auto;
}

.project-item {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #3e4146;
    cursor: pointer;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: 0;
    transform: translateX(0);
}

.project-item.active {
    color: #d8c2b9;
    transform: translateX(10px);
    transition: color 0.3s ease, transform 0.3s ease;
}

.project-item:hover {
    color: #d8c2b9;
    transform: translateX(6px);
}

.current-project-info {
    margin-top: auto;
    padding-top: 84px;
}

.current-project-title {
    font-size: 32px;
    line-height: 1.02;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.02em;
    max-width: 540px;
}

.current-project-type {
    font-size: 14px;
    line-height: 1.45;
    color: #8b8e94;
    font-weight: 400;
    max-width: 560px;
}

.projects-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.projects-swiper {
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.projects-swiper .swiper-wrapper,
.projects-swiper .swiper-slide {
    height: 100%;
}

.projects-swiper .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

.projects-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
}

.projects-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projects-swiper .swiper-slide-active img {
    animation: projectImageSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.projects-image img.project-slide-in {
    animation: projectImageSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.current-project-title.project-text-in {
    animation: projectTextRiseIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.current-project-type.project-text-in {
    animation: projectTextRiseIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.current-project-title,
.current-project-type {
    will-change: transform, opacity;
}

@keyframes projectImageSlideIn {
    from {
        transform: translateX(11%);
        opacity: 0.72;
    }

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

@keyframes projectTextRiseIn {
    from {
        transform: translateY(16px);
        opacity: 0;
    }

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

@media (max-width: 1024px) {
    .projects-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .projects-content {
        padding: 56px 20px 42px;
    }

    .projects-heading {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .project-item {
        font-size: 14px;
    }

    .current-project-info {
        padding-top: 40px;
    }

    .current-project-title {
        font-size: 28px;
    }

    .current-project-type {
        font-size: 13px;
    }

    .projects-image {
        height: 360px;
        min-height: 360px;
        width: 100%;
        flex: 0 0 auto;
        display: block;
        overflow: hidden;
    }

    .projects-swiper,
    .projects-swiper .swiper-wrapper,
    .projects-swiper .swiper-slide {
        width: 100%;
        height: 100%;
    }

    .projects-swiper .swiper-slide {
        display: block;
    }

    .projects-image img {
        width: 100%;
        height: 100%;
        min-height: 360px;
        object-fit: cover;
        object-position: center center;
    }

    .projects-section {
        padding-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .projects-content {
        padding: 36px 16px 26px;
    }

    .projects-heading {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .project-list {
        gap: 10px;
    }

    .project-item {
        font-size: 13px;
    }

    .current-project-info {
        padding-top: 24px;
    }

    .current-project-title {
        font-size: 24px;
    }

    .current-project-type {
        font-size: 12px;
    }

    .projects-image {
        height: 280px;
    }
}

/* Combined Licensing Section Logic */

/* Licensing Map Section as the base */
.licensing-map-section {
    position: relative;
    /* Establish positioning context for absolute children */
    background-color: #fff;
    padding: 100px 0 150px;
    min-height: 800px;
    /* Ensure enough space for content and overlay */
    z-index: 1;
    /* Ensure it's behind the text overlay */
}

/* Licensing Text Section as an absolute overlay */
.licensing-text-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.licensing-text-section.animation-complete {
    opacity: 0;
    pointer-events: none;
}

/* Marquee Wrapper - Centers the content */
.marquee-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marquee-wrapper.active {
    opacity: 1;
}

/* Marquee Line - The moving container */
.marquee-line {
    display: flex;
    width: fit-content;
    white-space: nowrap;
    transform: translateX(100vw);
    /* Initial position off-screen right */
}

/* Base text styles */
.marquee-text {
    font-size: 9vw;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
    padding: 0 40px;
}

/* Animation trigger */
.marquee-wrapper.active .marquee-line {
    animation: slideInStaySlideOut 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.marquee-wrapper.active .marquee-text {
    animation: colorToGrey 3s linear forwards;
}

/* Movement Animation: Right -> Center -> Left */
@keyframes slideInStaySlideOut {
    0% {
        transform: translateX(110vw);
    }

    18% {
        transform: translateX(0);
        /* Reach Center quickly */
    }

    45% {
        transform: translateX(0);
        /* Start leaving as next one enters */
    }

    100% {
        transform: translateX(-110vw);
        /* Exit Left */
    }
}

/* Color Animation: Grey out as it moves Left */
@keyframes colorToGrey {

    0%,
    45% {
        color: #000;
        /* Black while moving in and staying */
    }

    70%,
    100% {
        color: #d1d1d1;
        /* Turn grey as it begins exiting */
    }
}

/* Ensure reveal-side doesn't fight the marquee delay */
.marquee-wrapper.reveal-side {
    transition-delay: 0s !important;
}

/* Licensing Map Section */
/* .licensing-map-section {
    padding: 100px 0 150px;
} */

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-title {
    font-size: 42px;
    /* Slightly larger */
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.map-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.map-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
}

.map-svg-wrapper {
    width: 100%;
    min-height: 400px;
    /* Space for the future SVG */
}

#chartdiv {
    width: 100%;
    height: 650px;
    /* Increased height */
    margin: 0 auto;
    max-width: 1200px;
    /* Increased max-width */
    background-color: transparent;
    display: block;
}

/* State Modal Styles */
.state-modal {
    display: none;
    position: absolute;
    bottom: 22px;
    left: 18px;
    right: auto;
    top: auto;
    transform: none;
    z-index: 100;
    width: 475px;
    background-color: rgba(16, 16, 16, 0.96);
    color: #fff;
    padding: 26px 24px 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    border-radius: 0;
    overflow: hidden;
}

.state-modal::before {
    content: '';
    position: absolute;
    left: -8px;
    bottom: -18px;
    width: 215px;
    height: 215px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23555b66' d='M128 8c-44.2 0-80 35.8-80 80 0 54 63.2 124.8 74.5 137.1a8 8 0 0 0 11 0C144.8 212.8 208 142 208 88c0-44.2-35.8-80-80-80Zm0 112a32 32 0 1 1 0-64 32 32 0 0 1 0 64Z'/%3E%3C/svg%3E");
}

.state-modal-content {
    position: relative;
    z-index: 1;
}

.close-modal {
    position: absolute;
    top: -2px;
    right: 2px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: #fff;
}

#modal-state-name {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 20px;
}

.licensing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.licensing-list li {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    padding-left: 0;
}

.view-all-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 16px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-all-btn:hover {
    background: #fff;
    color: #2b1d18;
}

.us-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    /* Moved to right */
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Clean, no background as per image */
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 14px;
    height: 14px;
    display: block;
}

.legend-color.licensed {
    background-color: #090a0d;
}

.legend-color.unlicensed {
    border: 1px solid #000;
    background-color: #fff;
}

.legend-label {
    font-size: 12px;
    font-weight: 500;
    color: #444;
    /* Slightly softer than pure black */
}

/* Licensing Split Map Widget */
.licensing-split-map-section {
    padding: 36px 0;
    background: #fff;
}

.licensing-split-map-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
    gap: 20px;
    align-items: stretch;
}

.licensing-split-map-local,
.licensing-split-map-card {
    min-width: 0;
}

.licensing-split-map-local-media {
    position: relative;
    height: 100%;
    min-height: 548px;
    overflow: hidden;
    background: #edf0f1;
}

.licensing-split-map-local-media iframe,
.licensing-split-map-local-media img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.licensing-split-map-local-media img {
    object-fit: cover;
}

.licensing-split-map-pin {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #be1f31;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 14px 28px rgba(190, 31, 49, 0.22);
}

.licensing-split-map-pin svg {
    width: 28px;
    height: 28px;
}

.licensing-split-map-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 548px;
}

.licensing-split-map-header {
    text-align: center;
    max-width: 470px;
    margin: 0 auto 26px;
}

.licensing-split-map-title {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 600;
    text-transform: uppercase;
    color: #131417;
}

.licensing-split-map-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #62656c;
}

.licensing-split-map-graphic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 760px;
}

.licensing-split-map-graphic img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.licensing-split-map-legend {
    align-self: flex-end;
    display: grid;
    gap: 8px;
    margin-top: 12px;
    color: #111215;
    font-size: 13px;
}

.licensing-split-map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.licensing-split-map-swatch {
    width: 12px;
    height: 12px;
    display: inline-block;
    border: 1px solid #111215;
    background: #fff;
}

.licensing-split-map-swatch.is-licensed {
    background: #111215;
}

.licensing-split-map-swatch.is-unlicensed {
    background: #fff;
}





@media (max-width: 768px) {
    .marquee-text {
        font-size: 20vw;
    }

    .map-legend {
        position: static;
        margin-top: 40px;
        flex-direction: row;
        justify-content: center;
    }

    .licensing-split-map-section {
        padding: 24px 0;
    }

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

    .licensing-split-map-local-media,
    .licensing-split-map-card {
        min-height: 0;
    }

    .licensing-split-map-local-media {
        height: 360px;
    }

    .licensing-split-map-card {
        padding: 24px;
    }

    .licensing-split-map-header {
        margin-bottom: 18px;
    }

    .licensing-split-map-description {
        font-size: 15px;
    }

    .licensing-split-map-legend {
        align-self: center;
        margin-top: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .licensing-split-map-grid {
        grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
    }

    .licensing-split-map-local-media,
    .licensing-split-map-card {
        min-height: 480px;
    }

    .licensing-split-map-card {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .how-header {
        flex-direction: column;
        gap: 20px;
    }

    .how-description {
        text-align: left;
    }

    .steps-grid-wrapper {
        height: auto;
    }

    .steps-video-bg {
        /* On mobile, maybe just a static image or cover? keeping video for now */
        height: 100%;
        position: absolute;
        /* Keep absolute */
    }

    .steps-grid {
        flex-direction: column;
        /* Stack on mobile */
        height: auto;
        gap: 0;
    }

    .step-card {
        height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* What It's Like Section */
.work-with-section {
    padding: 150px 0;
    background-color: #f5f5f5;
    overflow: hidden;
    position: relative;
}


.work-with-grid {
    display: flex;
    max-width: var(--container-max-width);
    margin: 0 auto;
    /* padding: 0 20px; */
    gap: 60px;
    /* Reduced gap to give carousel more room */
    align-items: stretch;
    /* Stretch children to equal height */
}

.work-with-left {
    flex: 0 0 320px;
    /* Slightly narrower left column */
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.work-with-left .section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.15;
    color: #000;
}

.section-desc {
    font-size: 14px;
    font-weight: 500;
    color: #707070;
    line-height: 1.45;
    margin-bottom: 35px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    margin-bottom: 80px;
}

.contact-link .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-link:hover .arrow {
    transform: translateX(6px);
}

.slider-nav {
    display: flex;
    gap: 15px;
}

.swiper-btn-prev,
.swiper-btn-next {
    width: 60px;
    height: 60px;
    border: 1px solid #dcdcdc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* Disabled state */
.swiper-btn-prev.swiper-button-disabled,
.swiper-btn-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
    background: #fff !important;
    border-color: #dcdcdc !important;
    color: #000 !important;
}

/* Testimonial Slider */
.work-with-right {
    flex: 1;
    min-width: 0;
}

.testimonial-swiper {
    overflow: hidden;
}

.testimonial-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    /* CRITICAL: Force all slides to same height */
}

.swiper-slide {
    height: auto !important;
    /* Allow stretch to work */
    display: flex;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 38% 1fr;
    /* Grid for image/info split */
    background: #fff;
    width: 100%;
    flex: 1;
    min-height: 480px;
    /* Slightly more compact base */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.testimonial-img-box {
    height: 100%;
    overflow: hidden;
}

.testimonial-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-info-box {
    padding: 50px 40px;
    /* Optimized padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* More balanced look */
}

.testimonial-quote {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    color: #707070;
    margin: 0 0 40px 0;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: auto;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 4px 0;
    color: #000;
}

.user-role {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    color: #707070;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .work-with-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .container-full-right {
        padding-right: 20px;
        margin-right: auto;
    }

    .work-with-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .work-with-left {
        padding-top: 0;
    }

    .cta-box {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        grid-template-columns: 1fr;
    }

    .testimonial-img-box {
        height: 300px;
    }

    .testimonial-info-box {
        padding: 40px 30px;
    }

    .testimonial-quote {
        font-size: 18px;
    }
}

/* CTA Banner Section */
.cta-banner-section {
    padding-top: 88px;
    padding-bottom: 88px;
    background-color: #ffffff;
}

.cta-banner-content {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 40px;
    border-radius: 4px;
    isolation: isolate;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(9, 10, 13, 0.18) 0%, rgba(9, 10, 13, 0.34) 100%),
        linear-gradient(90deg, rgba(12, 15, 18, 0.28) 0%, rgba(12, 15, 18, 0.12) 50%, rgba(12, 15, 18, 0.22) 100%);
    z-index: 1;
}

.cta-inner-text {
    position: relative;
    z-index: 2;
    max-width: 980px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: clamp(42px, 4vw, 52px);
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    max-width: 1120px;
    text-wrap: balance;
}

.cta-subtitle {
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 28px;
    font-weight: 500;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    background-color: #b50707;
    color: #fff;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: background-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    box-shadow: 0 12px 22px rgba(120, 6, 6, 0.22);
}

.cta-button:hover {
    background-color: #910303;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(120, 6, 6, 0.28);
}

.cta-banner-content::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 768px) {
    .cta-banner-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .cta-banner-content {
        min-height: 300px;
        padding: 34px 20px;
    }

    .cta-button {
        min-width: 150px;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Contact Checklist Section */
.contact-checklist-section {
    padding: 120px 0 132px;
    /* background: #F7F7F7; */
}

.contact-checklist-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(540px, 0.95fr);
    gap: 92px;
    align-items: start;
}

.contact-checklist-copy {
    max-width: 560px;
    padding-top: 8px;
}

.contact-checklist-heading {
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #111111;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-checklist-description {
    max-width: 520px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: rgba(17, 17, 17, 0.8);
    margin-bottom: 42px;
}

.contact-checklist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
}

.contact-checklist-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.contact-checklist-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(17, 17, 17, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.9);
}

.contact-checklist-icon svg {
    width: 22px;
    height: 22px;
}

.contact-checklist-meta-label {
    display: block;
    font-size: 12px;
    line-height: 1.3;
    color: #2e3138;
    margin-bottom: 4px;
}

.contact-checklist-meta-value {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-checklist-panel {
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 20px rgba(16, 17, 20, 0.02);
    padding: 34px 36px 38px;
}

.contact-checklist-panel-title {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
    color: #111111;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-checklist-options {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-checklist-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 11px 16px;
    background: #F0F0F0;
    cursor: pointer;
    border: 1px solid #efefef;
    transition: background-color 0.22s ease, border-color 0.22s ease;
}

.contact-checklist-option:hover {
    background: #ebebeb;
    border-color: #e7e7e7;
}

.contact-checklist-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-checklist-option-box {
    width: 13px;
    height: 13px;
    border: 1px solid #4c4f55;
    background: #fff;
    flex-shrink: 0;
    position: relative;
}

.contact-checklist-option input:checked+.contact-checklist-option-box::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: #be1f31;
}

.contact-checklist-option-text {
    font-size: 14px;
    line-height: 1.4;
    color: #1d1f24;
}

.contact-checklist-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    height: 48px;
    padding: 10px 24px;
    background: #b22234;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    border: 0;
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.contact-checklist-button:hover {
    background: #9f1727;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .contact-checklist-section {
        padding: 84px 0 96px;
    }

    .contact-checklist-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-checklist-copy,
    .contact-checklist-panel {
        max-width: none;
    }

    .contact-checklist-heading {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .contact-checklist-description {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .contact-checklist-panel {
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    .contact-checklist-section {
        padding: 64px 0 72px;
    }

    .contact-checklist-heading {
        font-size: 32px;
    }

    .contact-checklist-description {
        font-size: 16px;
    }

    .contact-checklist-meta {
        gap: 18px;
    }

    .contact-checklist-meta-item {
        min-width: 0;
        width: 100%;
    }

    .contact-checklist-icon {
        width: 52px;
        height: 52px;
    }

    .contact-checklist-panel {
        padding: 24px 18px 28px;
    }

    .contact-checklist-panel-title {
        font-size: 16px;
        padding-bottom: 16px;
        margin-bottom: 18px;
    }

    .contact-checklist-option {
        padding: 12px 12px;
    }

    .contact-checklist-option-text {
        font-size: 14px;
    }

    .contact-checklist-button {
        min-width: 112px;
        min-height: 44px;
        padding: 12px 22px;
        font-size: 14px;
    }
}

.contact-checklist-wizard {
    display: block;
}

.contact-checklist-step {
    display: none;
}

.contact-checklist-step.is-active {
    display: block;
}

.contact-checklist-form-grid {
    display: grid;
    gap: 20px 14px;
}

.contact-checklist-form-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
}

.contact-checklist-form-grid.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.contact-checklist-field {
    display: grid;
    gap: 8px;
}

.contact-checklist-field span {
    font-size: 12px;
    font-weight: 400;
    color: #111111;
    line-height: 1.625;
}

.contact-checklist-field input,
.contact-checklist-field textarea {
    width: 100%;
    border: 1px solid #f0f0f0;
    background: #f2f2f2;
    color: #111;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 15px;
    outline: none;
    border-radius: 0;
    box-shadow: none;
}

.contact-checklist-field textarea {
    min-height: 92px;
    padding-top: 12px;
    resize: vertical;
}

.contact-checklist-form-grid .span-2 {
    grid-column: span 2;
}

.contact-checklist-form-grid .span-3 {
    grid-column: span 3;
}

.contact-checklist-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 0;
    font-size: 14px;
    color: #1d1f24;
    cursor: pointer;
    line-height: 1.4;
}

.contact-checklist-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-checklist-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    justify-content: flex-start;
}

.contact-checklist-actions p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
}

.contact-checklist-actions p br {
    display: none;
}

.contact-checklist-actions .contact-checklist-button:last-child {
    margin-left: auto;
}

.contact-checklist-button.is-secondary {
    background: transparent;
    border: 1px solid #d8d8d8;
    color: #111;
}

.contact-checklist-upload {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 132px;
    border: 1px dashed #9d9d9d;
    background: #f7f7f7;
    cursor: pointer;
    text-align: center;
    padding: 18px;
    margin-bottom: 28px;
}

.contact-checklist-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.contact-checklist-upload-copy {
    display: grid;
    gap: 6px;
}

.contact-checklist-upload-copy strong {
    font-size: 14px;
    font-weight: 500;
    color: #1d1f24;
    text-transform: uppercase;
}

.contact-checklist-upload-copy small {
    font-size: 12px;
    color: #5d6168;
    text-transform: uppercase;
}

.contact-checklist-panel-title.is-subsection {
    margin-top: 4px;
}

.contact-checklist-step.is-success {
    text-align: center;
    padding: 28px 0 6px;
}

.contact-checklist-success-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #20a357;
    color: #20a357;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-checklist-success-icon svg {
    width: 28px;
    height: 28px;
}

.contact-checklist-success-title {
    font-size: 30px;
    color: #111;
    margin-bottom: 14px;
    font-weight: 500;
}

.contact-checklist-success-copy {
    max-width: 460px;
    margin: 0 auto 28px;
    font-size: 15px;
    line-height: 1.55;
    color: #4b4e55;
}

@media (max-width: 768px) {
    .contact-checklist-form-grid.cols-2,
    .contact-checklist-form-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .contact-checklist-form-grid .span-2,
    .contact-checklist-form-grid .span-3 {
        grid-column: auto;
    }

    .contact-checklist-actions {
        flex-direction: column;
    }

    .contact-checklist-actions p {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-checklist-button,
    .contact-checklist-button.is-secondary {
        width: 100%;
        min-width: 0;
    }
}

/* FAQ Accordion Section */
.faq-accordion-section {
    padding: 100px 0 150px;
    background-color: #fff;
    text-align: center;
}

.accordion-group {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 24px;
}

.accordion-trigger {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.4s ease;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Grey out non-active items when any item is active */
/* We only apply this if at least one item has the 'active' class */
.accordion-group:has(.accordion-item.active) .accordion-item:not(.active) .accordion-trigger {
    color: #e0e0e0;
}

.accordion-item.active .accordion-trigger {
    color: #000;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 25px;
}

.accordion-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-accordion-section {
        padding: 80px 0;
    }

    .accordion-trigger {
        font-size: 26px;
    }

    .accordion-item {
        margin-bottom: 35px;
    }
}


/* Site Footer */
.site-footer {
    background-color: #231711;
    padding: 100px 0 60px;
    color: #fff;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-col {
    flex: 0 0 auto;
}

.footer-logo {
    max-width: 170px;
    height: auto;
}

.cta-col {
    flex: 0 0 auto;
}

.footer-message {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-outline-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-outline-btn:hover {
    background: #fff;
    color: #231711;
}

.footer-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.info-item {
    margin-bottom: 45px;
}

.links-item {
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 80px;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        gap: 60px;
    }
}

.sticky-image {
    position: static;
}

.reveal-side {
    opacity: 0;
    transition: all 1s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-side.active {
    opacity: 1;
}

/* Global Responsive Design System */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .projects-container {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .projects-content,
    .projects-image {
        flex: 0 0 100%;
        min-height: 0;
    }

    .projects-content {
        padding: 56px 32px 36px;
    }

    .projects-image {
        height: 420px;
        min-height: 420px;
        width: 100%;
        flex: 0 0 auto;
    }
}

@media (max-width: 1024px) {

    /* section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    } */
    .work-with-section{
        padding: 80px 0 !important;
    }

    .wr-calculator-widget-wrapper section,
    .wr-pergolux-widget-wrapper section,
    .plx-stamp-section {
        padding: 0 !important;
    }

    /* How It Works - Tablet (2x2 order: 1,2 / 3,4) */
    .steps-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-flow: row !important;
        align-items: stretch !important;
        height: auto !important;
        gap: 16px !important;
    }

    .steps-grid-wrapper {
        height: auto !important;
        /* padding-bottom: 30px !important; */
    }

    .step-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
        height: 240px !important;
        min-height: 240px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 28px !important;
    }

    .step-card-low,
    .step-card-high {
        margin-top: 0 !important;
    }

    .step-card::before,
    .step-card::after {
        display: none !important;
    }

    /* Map Section */
    .map-header {
        text-align: left !important;
    }

    .map-container {
        height: auto !important;
        min-height: 400px !important;
    }

    .state-modal {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 420px !important;
        bottom: auto !important;
    }

    /* Work With Section */
    .work-with-grid {
        flex-direction: column !important;
    }

    .work-with-left {
        flex: 0 0 auto !important;
        width: 100% !important;
        padding-bottom: 40px !important;
    }
}

@media (max-width: 768px) {

    /* How It Works - Mobile (1,2,3,4 single column) */
    .steps-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-auto-flow: row !important;
        gap: 12px !important;
    }

    .step-card {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
        height: 220px !important;
        min-height: 220px !important;
        padding: 22px !important;
    }

    /* section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    } */
    .wr-calculator-widget-wrapper section,
    .wr-pergolux-widget-wrapper section,
    .plx-stamp-section {
        padding: 0 !important;
    }

    .hero-title {
        font-size: 42px !important;
    }

    .how-title,
    .map-title,
    .projects-heading {
        font-size: 32px !important;
    }

    .footer-nav {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .footer-main {
        gap: 40px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px !important;
    }

    .hero-title {
        font-size: 36px !important;
    }

    .cta-button {
        width: 100% !important;
        text-align: center !important;
        padding: 15px 30px !important;
    }
}

section.subpage-hero {
    height: 70vh !important;
    min-height: 550px !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    color: #fff !important;
    overflow: hidden !important;
    padding-top: 80px !important;
    /* Slightly less padding to center content better */
    margin: 0 !important;
}

section.subpage-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)) !important;
    z-index: 1 !important;
}

section.subpage-hero .container {
    position: relative !important;
    z-index: 2 !important;
    text-align: left !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

section.subpage-hero .hero-title {
    color: #fff !important;
    font-size: 90px !important;
    /* Slightly reduced for better fit */
    font-weight: 700 !important;
    line-height: 0.9 !important;
    margin-bottom: 30px !important;
    letter-spacing: -3px !important;
    /* Slightly tighter */
    text-transform: uppercase !important;
}

section.subpage-hero .hero-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 600px !important;
    font-size: 20px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* Header Logic for Subpages */
body:has(.subpage-hero) header.site-header {
    position: absolute !important;
    background: transparent !important;
    border: none !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
}

body:has(.subpage-hero) header.site-header .logo img {
    filter: invert(1) brightness(100) !important;
}

body:has(.subpage-hero) header.site-header .main-nav a {
    color: #fff !important;
}

body:has(.subpage-hero) header.site-header .main-nav a.active {
    border-color: #fff !important;
}

/* Fallback for pages without subpage-hero (Blog Detail) */
body:not(:has(.subpage-hero)) header.site-header {
    position: relative !important;
    background: #fff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    color: #000 !important;
}

body:not(:has(.subpage-hero)) header.site-header .logo img {
    filter: none !important;
}

body:not(:has(.subpage-hero)) header.site-header .main-nav a {
    color: #000 !important;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    section.subpage-hero {
        height: 60vh !important;
        min-height: 450px !important;
    }

    section.subpage-hero .hero-title {
        font-size: 60px !important;
        letter-spacing: -2px !important;
    }
}

/* Detail Page Styles */
.detail-hero {
    padding: 180px 0 100px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 40px;
}

.detail-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    letter-spacing: -2px;
}

.detail-content-section {
    padding: 120px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 100px;
}

.detail-subheadline {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.detail-text-col p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.key-features {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sticky-image {
    position: sticky;
    top: 120px;
}

.sticky-image img {
    width: 100%;
    border-radius: 4px;
}

/* About Page Specifics */
.about-content-section {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

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

.about-headline {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: -1px;
}

.about-text-col p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.impact-stats {
    display: flex;
    gap: 80px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.impact-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.impact-label {
    font-size: 13px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Listing - Restored */
.services-listing-section {
    padding: 120px 0;
    background: #fff;
}

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

.service-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-image {
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-info {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info.no-img {
    background: #231711;
    color: #fff;
    justify-content: center;
    padding: 60px 40px;
}

.service-info.no-img .service-title {
    color: #fff;
}

.service-info.no-img .service-text {
    color: rgba(255, 255, 255, 0.7);
}

.service-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -0.5px;
}

.service-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.about-image-col img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: #fcfcfc;
}

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

.value-card {
    padding: 40px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Portfolio Styles */
.portfolio-listing-section {
    padding: 120px 0;
    background: #fdfdfd;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.portfolio-item {
    cursor: pointer;
}

.portfolio-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 25px;
    background: #eee;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.project-cat {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    font-weight: 700;
    margin-bottom: 12px;
}

.portfolio-item .project-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    letter-spacing: -0.5px;
}

.project-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Blog Listing Styles */
.blog-listing-section {
    padding: 120px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fdfdfd;
    border: 1px solid #eee;
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 40px;
    flex: 1;
}

.blog-date {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.read-more {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}

/* Blog Detail Redesign */
.blog-detail-hero {
    height: 60vh !important;
}

.breadcrumb-white {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.breadcrumb-white a {
    color: #fff;
    text-decoration: none;
}

.post-meta-white {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.blog-post-container {
    padding: 120px 0;
    background: #fff;
}

.blog-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-sidebar {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 25px;
}

.share-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.share-links a {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.share-links a:hover {
    opacity: 0.5;
}

.blog-main-content {
    max-width: 750px;
}

.blog-main-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.blog-main-content .lead-text {
    font-size: 26px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 60px;
}

.blog-main-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 80px 0 30px;
    letter-spacing: -1px;
}

.article-image {
    margin: 80px 0;
}

.article-image img {
    width: 100%;
    border-radius: 2px;
}

.article-image figcaption {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
    font-style: italic;
    text-align: center;
}

.premium-quote {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
    margin: 100px 0;
    padding: 0;
    border: none;
    letter-spacing: -1.5px;
    position: relative;
}

.premium-quote::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: -20px;
    font-size: 120px;
    color: #f0f0f0;
    z-index: -1;
}

.article-tags {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
}

.tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    border: 1px solid #eee;
    padding: 8px 15px;
    border-radius: 100px;
}

/* Next Article Section */
.next-article-section {
    padding: 150px 0;
    background: #f9f9f9;
    text-align: center;
}

.next-article-card {
    max-width: 800px;
    margin: 40px auto 0;
}

.next-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    letter-spacing: -2px;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.next-link {
    text-decoration: none;
}

.next-link:hover .next-title {
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .blog-sidebar {
        order: 2;
    }

    .share-links {
        flex-direction: row;
        gap: 30px;
    }

    .premium-quote {
        font-size: 28px;
    }

    .next-title {
        font-size: 36px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 80px 0 120px;
    background: #fff;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-methods {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-method h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
}

.contact-method p {
    font-size: 18px;
    color: #000;
}

.premium-form {
    background: #f9f9f9;
    padding: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #999;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.locations-section {
    padding: 80px 0;
    background: #231711;
    color: #fff;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.location-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Info Widget */
.contact-hero-content {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 28px;
}

.info-group h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.info-group p,
.info-group a {
    font-size: 18px;
    line-height: 1.6;
    color: #111;
    text-decoration: none;
}

.contact-form-wrapper {
    min-width: 0;
}

.contact-form-wrapper .wpcf7-form {
    display: grid;
    gap: 16px;
}

.contact-form-wrapper .woodrock-cf7 {
    display: grid;
    gap: 16px;
}

.contact-form-wrapper .woodrock-cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-wrapper .woodrock-cf7-field {
    min-width: 0;
}

.contact-form-wrapper .woodrock-cf7-full {
    grid-column: 1 / -1;
}

.contact-form-wrapper .wpcf7-form label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a7d84;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid #e4e4e4;
    background: #fff;
    padding: 14px 16px;
    font-size: 15px;
    color: #111;
}

.contact-form-wrapper textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-wrapper .woodrock-cf7-file-field label {
    padding: 18px;
    border: 1px dashed #d7d7d7;
    background: #fafafa;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    color: #444;
}

.contact-form-wrapper input[type="file"] {
    padding: 0;
    border: none;
    background: transparent;
}

.contact-form-wrapper .wpcf7-list-item {
    display: block;
    margin: 0;
}

.contact-form-wrapper .wpcf7-checkbox {
    display: grid;
    gap: 10px;
}

.contact-form-wrapper .wpcf7-list-item-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
}

.contact-form-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
}

.contact-form-wrapper .wpcf7-submit,
.contact-form-wrapper input[type="submit"] {
    appearance: none;
    border: none;
    background: #be1f31;
    color: #fff;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    justify-self: start;
}

.contact-form-wrapper .wpcf7-spinner {
    margin: 12px 0 0;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7>.woodrock-cf7-row,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7>.woodrock-cf7-full,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7>.form-section,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7>.woodrock-cf7-submit-wrap {
    grid-column: 1 / -1;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .form-section {
    margin-bottom: 34px;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .form-section:last-of-type {
    margin-bottom: 28px;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .form-section .woodrock-cf7-row:last-child {
    margin-bottom: 0;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .form-section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1f6fff;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-field {
    min-width: 0;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-full {
    grid-column: 1 / -1;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .wpcf7-form {
    display: grid;
    gap: 16px;
    color: #fff;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .wpcf7-form p {
    margin: 0;
    min-width: 0;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #f3f3f3 !important;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap input,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap select,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #242424 !important;
    border: 1px solid #242424 !important;
    border-radius: 0;
    color: #fff !important;
    font-size: 15px;
    padding: 12px 14px;
    outline: none;
    box-shadow: none !important;
    opacity: 1 !important;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap input:focus,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap select:focus,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap textarea:focus {
    border-color: #1f6fff !important;
    background: #292929 !important;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap input::placeholder,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap textarea::placeholder {
    color: #8f8f8f;
    opacity: 1;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap input:-webkit-autofill,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap input:-webkit-autofill:hover,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap input:-webkit-autofill:focus,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap textarea:-webkit-autofill,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap select:-webkit-autofill {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px #242424 inset;
    transition: background-color 9999s ease-in-out 0s;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-file-field label {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0;
    font-weight: 600;
    color: transparent !important;
    border-top: none;
    padding-top: 0;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap input[type="file"] {
    position: absolute;
    inset: 34px 0 0 0;
    width: 100%;
    height: calc(100% - 34px);
    padding: 0;
    border: none !important;
    background: transparent !important;
    color: transparent !important;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 138px;
    padding: 28px 28px;
    border: 1px dashed #1f6fff;
    background: #242424;
    text-align: center;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone-icon {
    font-size: 34px;
    line-height: 1;
    color: #efefef;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone-copy {
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    color: #9c9c9c;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone-copy strong {
    color: #fff;
    font-weight: 700;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone-meta,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone-files {
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    color: #b8b8b8;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone-files {
    color: #cfcfcf;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-file-field.has-files .pricing-file-dropzone {
    border-color: rgba(31, 111, 255, 0.75);
    background: rgba(31, 111, 255, 0.08);
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-file-field.has-files .pricing-file-dropzone-copy {
    color: #d7d7d7;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .wpcf7-submit,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap input[type="submit"] {
    appearance: none;
    border: none;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    background: #c72535 !important;
    color: #fff !important;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    justify-self: stretch;
    box-sizing: border-box;
    border-radius: 0;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .wpcf7-spinner {
    margin: 10px 0 0;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #ff8c8c;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .wpcf7-response-output {
    margin: 16px 0 0 !important;
    padding: 14px 16px !important;
    border: 1px solid #2a2a2a !important;
    color: #fff;
    font-size: 14px;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .submit-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-submit-wrap {
    flex: none;
    width: 100%;
    min-width: 0;
    display: block;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-submit-wrap .wpcf7-submit,
.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-submit-wrap input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .submit-note {
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 12px;
    color: #d7d7d7;
    font-weight: 400;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .form-section .disclaimer {
    background: transparent;
    border: none;
    border-left: none;
    border-radius: 0;
    padding: 0;
    margin: 10px 0 0;
}

.wr-calculator-widget-wrapper .pricing-cf7-form-wrap .form-section .disclaimer p {
    font-size: 12px;
    color: #efefef;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-form-wrapper .woodrock-cf7-row {
        grid-template-columns: 1fr;
    }

    .wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7 {
        grid-template-columns: 1fr;
    }

    .wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-row {
        grid-template-columns: 1fr;
    }

    .wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone {
        min-height: 120px;
        padding: 22px 18px;
    }

    .wr-calculator-widget-wrapper .pricing-cf7-form-wrap .pricing-file-dropzone-copy {
        font-size: 15px;
    }

    .wr-calculator-widget-wrapper .pricing-cf7-form-wrap .submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .wr-calculator-widget-wrapper .pricing-cf7-form-wrap .woodrock-cf7-submit-wrap {
        width: 100%;
        min-width: 0;
    }
}

.form-placeholder {
    border: 1px solid #e6e6e6;
    background: #fafafa;
    padding: 36px 28px;
    color: #666;
    border-radius: 2px;
}

@media (max-width: 1024px) {

    .detail-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .detail-title {
        font-size: 48px;
    }

    .subpage-hero .hero-title {
        font-size: 42px;
    }

    .sticky-image {
        position: static;
    }

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

    .blog-grid,
    .contact-hero-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .blog-post-title {
        font-size: 42px;
    }

    .premium-form {
        padding: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

    .contact-hero-content {
        padding: 72px 0;
    }

    .contact-grid {
        gap: 24px;
    }

    .info-group h3 {
        font-size: 11px;
    }

    .info-group p,
    .info-group a {
        font-size: 16px;
    }
}

/* Additional Subpage Responsiveness */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .service-image {
        height: 250px !important;
    }

    .service-info {
        padding: 30px !important;
    }

    .detail-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .blog-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .blog-sidebar {
        order: 2;
        position: static !important;
    }

    .blog-article {
        order: 1;
    }

    .premium-quote {
        font-size: 28px !important;
        margin: 60px 0 !important;
    }

    .next-title {
        font-size: 32px !important;
    }
}

/* Global Widget Safety Pass */
@media (max-width: 1024px) {
    .woodrock-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wedo-section .container,
    .projects-section .projects-container,
    .work-with-section .work-with-grid,
    .services-listing-section .services-grid,
    .values-section .values-grid,
    .stats-section .stats-grid,
    .locations-section .locations-grid,
    .about-content-section .about-grid,
    .faq-accordion-section .accordion-group {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }
}

@media (max-width: 768px) {

    .projects-heading,
    .how-title,
    .about-headline,
    .cta-title {
        line-height: 1.15;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .projects-content,
    .work-with-left,
    .work-with-right,
    .service-info,
    .value-card,
    .location-card {
        min-width: 0;
    }

    .projects-content {
        padding: 28px 16px 20px !important;
    }

    .projects-image {
        height: 260px !important;
    }

    .current-project-info {
        padding-top: 18px !important;
    }

    .current-project-title {
        font-size: 24px !important;
    }

    .current-project-type {
        font-size: 12px !important;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        height: 50vh !important;
        min-height: 350px !important;
    }

    .subpage-hero .hero-title {
        font-size: 36px !important;
    }

    .detail-title {
        font-size: 38px !important;
    }

    .detail-hero {
        padding: 140px 0 60px !important;
    }
}

/* Woodrock Pricing Plans */
.woodrock-pricing-wrapper {
    padding: 60px 0;
    width: 100%;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plan {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-top: 4px solid #C72535;
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-plan.is-featured {
    border-width: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #C72535;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 0 0 4px 4px;
    letter-spacing: 0.1em;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 10px;
}

.plan-title {
    font-size: 36px;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 15px;
}

.plan-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.plan-price-wrap {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.plan-price {
    font-size: 54px;
    color: #C72535;
    line-height: 1;
}

.plan-price-sub {
    font-size: 13px;
    color: #aaa;
    margin-top: 5px;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

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

.feature-list li {
    font-size: 14px;
    color: #555;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid #f9f9f9;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #C72535;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1,4 4,7 9,1' fill='none' stroke='%23C72535' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
    background-size: 10px;
}

.plan-footer {
    margin-top: auto;
}

.plan-button {
    display: block;
    width: 100%;
    background: #C72535;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.3s;
}

.plan-button:hover {
    background: #a31e2a;
}

@media (max-width: 991px) {
    .pricing-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .pricing-plans-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}


/* --- Woodrock Full Pricing Calculator (EXACT HTML REPLICA) --- */
.wr-calculator-widget-wrapper {
    --red: #C72535;
    --blue: #1A56DB;
    --white: #ffffff;
    --black: #0d0d0d;
    --dark: #161616;
    --dark2: #1c1c1c;
    --border: #2a2a2a;
    --muted: #888;
    --faint: #555;
    --green: #2d7a4f;
}

.wr-calculator-widget-wrapper .pricing-page {
    display: block;
}

.wr-calculator-widget-wrapper .modal-page {
    display: none;
    animation: pceFadeIn 0.3s ease;
}

.wr-calculator-widget-wrapper .modal-page.active {
    display: block;
}

@keyframes pceFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.wr-calculator-widget-wrapper .stamp-section {
    background: #fff;
    padding: 0 0 80px;
    position: relative;
    overflow: visible;
}

.wr-calculator-widget-wrapper .stamp-section-header {
    background: #fff;
    margin: 0;
    padding: 80px 40px 64px;
    position: relative;
    text-align: center;
}

.wr-calculator-widget-wrapper .stamp-section-header::after {
    display: none;
}

.wr-calculator-widget-wrapper .section-header {
    margin-bottom: 40px;
}

.wr-calculator-widget-wrapper .eyebrow {
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.wr-calculator-widget-wrapper .section-header h2 {
    font-size: 54px;
    color: #111;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    line-height: 1.1;
}

.wr-calculator-widget-wrapper .section-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.wr-calculator-widget-wrapper .discount-bar {
    max-width: 1160px;
    margin: 0 auto 36px;
    background: var(--red);
    border-radius: 3px;
    padding: 20px 28px;
    box-shadow: 0 2px 10px rgba(199, 37, 53, 0.25);
}

.wr-calculator-widget-wrapper .discount-bar-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.wr-calculator-widget-wrapper .discount-bar-top label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.wr-calculator-widget-wrapper .discount-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.wr-calculator-widget-wrapper .discount-bar-top .label-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.wr-calculator-widget-wrapper .discount-options {
    display: none;
    gap: 10px;
    flex-wrap: wrap;
}

.wr-calculator-widget-wrapper .discount-options.visible {
    display: flex;
}

.wr-calculator-widget-wrapper .disc-btn {
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}

.wr-calculator-widget-wrapper .disc-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

.wr-calculator-widget-wrapper .disc-btn.selected {
    background: #fff;
    border-color: #fff;
    color: var(--red);
}

.wr-calculator-widget-wrapper .discount-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-style: italic;
}

.wr-calculator-widget-wrapper .toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.wr-calculator-widget-wrapper .toggle {
    display: flex;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.wr-calculator-widget-wrapper .toggle-btn {
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.wr-calculator-widget-wrapper .toggle-btn.active {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(199, 37, 53, 0.2);
}

.wr-calculator-widget-wrapper .toggle-btn:not(.active):hover {
    background: #f9f9f9;
    color: #111;
}

.wr-calculator-widget-wrapper .stamp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto 24px;
}

.wr-calculator-widget-wrapper .stamp-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wr-calculator-widget-wrapper .stamp-col .stamp-card {
    flex: 1;
}

.wr-calculator-widget-wrapper .drawings-help-banner {
    background: var(--blue);
    border-radius: 4px 4px 0 0;
    padding: 14px 18px;
    border: 2px solid var(--blue);
    border-bottom: none;
    color: #fff;
}

.wr-calculator-widget-wrapper .drawings-help-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.wr-calculator-widget-wrapper .drawings-help-icon {
    font-size: 16px;
}

.wr-calculator-widget-wrapper .drawings-help-title {
    font-size: 18px;
    letter-spacing: 0.06em;
    color: #fff;
    margin: 0;
}

.wr-calculator-widget-wrapper .drawings-help-desc {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
}

.wr-calculator-widget-wrapper .drawings-help-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    padding: 9px 12px;
    cursor: pointer;
    transition: background 0.18s;
}

.wr-calculator-widget-wrapper .drawings-help-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.wr-calculator-widget-wrapper .drawings-help-toggle input {
    accent-color: #fff;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.wr-calculator-widget-wrapper .drawings-help-toggle .label-text {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    flex: 1;
}

.wr-calculator-widget-wrapper .drawings-help-price {
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
    line-height: 1;
    font-weight: 700;
}

.wr-calculator-widget-wrapper .drawings-help-redirect .drawings-help-desc {
    margin-bottom: 10px;
}

.wr-calculator-widget-wrapper .drawings-help-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    padding: 9px 14px !important;
    font-size: 12px !important;
    width: 100%;
    transition: background 0.18s !important;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.wr-calculator-widget-wrapper .drawings-help-btn:hover {
    background: rgba(255, 255, 255, 0.28) !important;
}

.wr-calculator-widget-wrapper .stamp-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-top: 4px solid var(--blue);
    border-radius: 4px;
    padding: 40px 32px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.wr-calculator-widget-wrapper .stamp-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.wr-calculator-widget-wrapper .stamp-card.featured {
    border-color: var(--blue);
    background: #1c1c1c;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.3);
}

.wr-calculator-widget-wrapper .card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 0 0 3px 3px;
    white-space: nowrap;
}

.wr-calculator-widget-wrapper .badge-blue {
    background: var(--blue);
    color: #fff;
}

.wr-calculator-widget-wrapper .badge-red {
    background: var(--red);
    color: #fff;
}

.wr-calculator-widget-wrapper .card-type {
    font-size: 14px;
    font-weight: 600;
    /* letter-spacing: 0.18em; */
    text-transform: uppercase;
    color: #3774FB;
    margin-bottom: 10px;
}

.wr-calculator-widget-wrapper .stamp-card h3 {
    font-size: 24px;
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 700;
}

.wr-calculator-widget-wrapper .card-desc {
    font-size: 12px;
    color: #CFCFCF;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.wr-calculator-widget-wrapper .price-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 6px;
}

.wr-calculator-widget-wrapper .price-num {
    font-size: 48px;
    line-height: 1;
    color: var(--white);
    font-weight: 400;
}

.wr-calculator-widget-wrapper .price-was {
    font-size: 22px;
    color: var(--faint);
    text-decoration: line-through;
    padding-bottom: 6px;
    display: none;
    font-weight: 600;
}

.wr-calculator-widget-wrapper .price-sub {
    font-size: 14px;
    color: #919191;
    padding-bottom: 8px;
    line-height: 1.4;
    white-space: nowrap;
}

.wr-calculator-widget-wrapper .feat-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.wr-calculator-widget-wrapper .feat-list li {
    font-size: 14px;
    color: #fff;
    padding: 7px 0;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.wr-calculator-widget-wrapper .feat-list li::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--blue);
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1,4 4,7 9,1' fill='none' stroke='%231A56DB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/8px no-repeat;
}

.wr-calculator-widget-wrapper .addon-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 2px;
    padding: 12px 14px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.18s;
}

.wr-calculator-widget-wrapper .addon-toggle-row:hover {
    border-color: var(--red);
}

.wr-calculator-widget-wrapper .addon-toggle-label {
    font-size: 12px;
    color: #fff;
    flex: 1;
}

.wr-calculator-widget-wrapper .addon-toggle-price {
    font-size: 20px;
    color: var(--red);
    margin-left: auto;
    font-weight: 700;
}

/* EXPANDABLE FULL CALCS */
.wr-calculator-widget-wrapper .calcs-expand {
    overflow: hidden;
}

.wr-calculator-widget-wrapper .calcs-expand-inner {
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-top: none;
    border-radius: 0 0 2px 2px;
    padding: 14px 14px 10px;
    margin-bottom: 16px;
}

.wr-calculator-widget-wrapper .calcs-expand-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    margin-top: 0;
}

.wr-calculator-widget-wrapper .card-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 2px solid #333;
    margin-bottom: 16px;
}

.wr-calculator-widget-wrapper .card-total-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.wr-calculator-widget-wrapper .card-total-price {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
}

.wr-calculator-widget-wrapper .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.18s;
}

.wr-calculator-widget-wrapper .btn-blue {
    background: var(--blue);
    color: #fff;
}

.wr-calculator-widget-wrapper .btn-red {
    background: var(--red);
    color: #fff;
}

.wr-calculator-widget-wrapper .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.wr-calculator-widget-wrapper .other-banner {
    background: var(--blue);
    margin: 40px auto;
    max-width: 1160px;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-radius: 4px;
    color: #fff;
}

.wr-calculator-widget-wrapper .other-banner-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
    min-width: 0;
}

.wr-calculator-widget-wrapper .other-banner-eyebrow {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    color: #fff;
    margin: 0;
}

.wr-calculator-widget-wrapper .other-banner-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.wr-calculator-widget-wrapper .other-banner-button {
    flex-shrink: 0;
    width: auto;
    height: 48px;
    padding: 10px 24px;
    border: 1px solid #fff;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    white-space: nowrap;
}

.wr-calculator-widget-wrapper .other-banner-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
}

.wr-calculator-widget-wrapper .btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.wr-calculator-widget-wrapper .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.wr-calculator-widget-wrapper .trust-bar {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 32px 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wr-calculator-widget-wrapper .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wr-calculator-widget-wrapper .trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.wr-calculator-widget-wrapper .dot-blue {
    background: var(--blue);
}

.wr-calculator-widget-wrapper .dot-red {
    background: var(--red);
}

@media (max-width: 900px) {
    .wr-calculator-widget-wrapper .stamp-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .wr-calculator-widget-wrapper .stamp-section-header {
        padding: 60px 20px 48px;
    }
    .wr-calculator-widget-wrapper .stamp-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wr-calculator-widget-wrapper .section-header h2 {
        font-size: 36px;
    }

    .wr-calculator-widget-wrapper .modal-content {
        padding: 20px;
    }

    .wr-calculator-widget-wrapper .other-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 20px;
        gap: 18px;
    }

    .wr-calculator-widget-wrapper .other-banner-button {
        flex-basis: auto;
        max-width: none;
        width: 100%;
    }

    .wr-calculator-widget-wrapper .drawings-calc-wrap {
        padding: 20px 18px 20px;
    }

    .wr-calculator-widget-wrapper .drawings-calc-wrap h3 {
        font-size: 22px;
    }

    .wr-calculator-widget-wrapper .drawings-building-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .wr-calculator-widget-wrapper .drawings-level-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .wr-calculator-widget-wrapper .drawings-calc-wrap .drawings-type-btn {
        min-height: 108px;
        padding: 16px;
    }

    .wr-calculator-widget-wrapper .drawings-level-btn {
        min-height: 120px;
    }

    .wr-calculator-widget-wrapper .drawings-check-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .wr-calculator-widget-wrapper .calcs-expand-inner {
        padding: 12px 12px 8px;
    }
    .wr-calculator-widget-wrapper .stamp-section-header {
        padding: 40px 20px 32px !important;
    }
    .wr-calculator-widget-wrapper .stamp-section {
        padding: 0 20px 40px !important;
    }
    .wr-calculator-widget-wrapper .stamp-grid {
        max-width: 100%;
        padding: 0;
    }

    .wr-calculator-widget-wrapper .drawings-calc-wrap .type-grid {
        grid-template-columns: 1fr !important;
    }

    .wr-calculator-widget-wrapper .drawings-calc-wrap .drawings-type-btn {
        min-height: auto;
        padding: 14px;
    }

    .wr-calculator-widget-wrapper .drawings-calc-wrap .type-name {
        font-size: 15px;
    }

    .wr-calculator-widget-wrapper .drawings-calc-wrap .type-desc {
        font-size: 12px;
        max-width: none;
    }

    .wr-calculator-widget-wrapper .drawings-level-number {
        font-size: 20px;
    }

    .wr-calculator-widget-wrapper .drawings-cta-btn {
        width: 100% !important;
        padding: 14px 18px !important;
        font-size: 14px;
        min-height: 48px;
    }

    .wr-calculator-widget-wrapper .drawings-check-grid {
        grid-template-columns: 1fr;
    }

    .wr-calculator-widget-wrapper .drawings-option-card,
    .wr-calculator-widget-wrapper .drawings-addon-row {
        max-width: none;
    }
}

/* MODAL OVERLAY */
.wr-calculator-widget-wrapper .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 100000;
    padding: 40px 20px;
    overflow-y: auto;
}

.wr-calculator-widget-wrapper .modal-overlay.active {
    display: flex;
}

.wr-calculator-widget-wrapper .modal-content {
    background: #000;
    width: 100%;
    max-width: 840px;
    border: 1px solid #222;
    border-radius: 4px;
    position: relative;
    padding: 0;
}

.wr-calculator-widget-wrapper .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.wr-calculator-widget-wrapper .modal-close:hover {
    color: #fff;
}

/* REUSED FORM STYLES */
.wr-calculator-widget-wrapper .field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
    display: block;
}

.wr-calculator-widget-wrapper .field input,
.wr-calculator-widget-wrapper .field select,
.wr-calculator-widget-wrapper .field textarea {
    background: #111;
    border: 1.5px solid #222;
    border-radius: 3px;
    color: #fff;
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.wr-calculator-widget-wrapper .field input:focus {
    border-color: var(--blue);
}

.wr-calculator-widget-wrapper .form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

.wr-calculator-widget-wrapper .cols-2 {
    grid-template-columns: 1fr 1fr;
}

.wr-calculator-widget-wrapper .form-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1e1e1e;
}

/* PRICE DISCOUNT LABEL */
.wr-calculator-widget-wrapper .price-discount-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    min-height: 16px;
}

/* DRAWINGS CALC */
.wr-calculator-widget-wrapper .calc-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: #f4f5f7;
    border: 1.5px solid #d0d4de;
    border-top: 4px solid var(--blue);
    border-radius: 4px;
    padding: 48px 44px;
    color: #111;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap {
    max-width: 1180px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 18px, transparent 18px),
        linear-gradient(180deg, #070707 0%, #020202 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    padding: 20px 28px 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 105% 50%, transparent 0 68%, rgba(255, 255, 255, 0.055) 68.5%, transparent 69.5%),
        radial-gradient(900px 500px at 105% 50%, transparent 0 74%, rgba(255, 255, 255, 0.045) 74.5%, transparent 75.5%),
        radial-gradient(680px 380px at 105% 50%, transparent 0 79%, rgba(255, 255, 255, 0.04) 79.5%, transparent 80.5%);
    pointer-events: none;
    opacity: 0.85;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap>* {
    position: relative;
    z-index: 1;
}

.wr-calculator-widget-wrapper .calc-wrap h3 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 700;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    font-weight: 500;
    line-height: 1.2;
}

.wr-calculator-widget-wrapper .calc-sub {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 32px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .calc-sub {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 24px;
    max-width: 760px;
}

.wr-calculator-widget-wrapper .calc-step-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .calc-step-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    color: #2d6cff;
    margin-bottom: 10px;
}

.wr-calculator-widget-wrapper .type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .type-grid {
    gap: 12px;
}

.wr-calculator-widget-wrapper .drawings-building-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: start;
}

.wr-calculator-widget-wrapper .drawings-level-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    justify-content: stretch;
}

.wr-calculator-widget-wrapper .type-btn {
    background: #fff;
    border: 2px solid #d0d4de;
    border-top: 4px solid var(--blue);
    padding: 24px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .drawings-type-btn {
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    min-height: 112px;
    padding: 18px 18px 16px;
    gap: 8px;
    justify-content: flex-start;
}

.wr-calculator-widget-wrapper .drawings-level-btn {
    min-height: 128px;
}

.wr-calculator-widget-wrapper .type-btn:hover {
    background: #f0f2f9;
    border-color: var(--blue);
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .drawings-type-btn:hover {
    background: rgba(17, 17, 17, 0.98);
    border-color: rgba(255, 255, 255, 0.78);
}

.wr-calculator-widget-wrapper .type-btn.selected {
    border-color: var(--red);
    border-top-color: var(--red);
    background: #fdf1f2;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .drawings-type-btn.selected {
    background: #c72b3c;
    border-color: #c72b3c;
    border-top-color: #c72b3c;
    box-shadow: none;
}

.wr-calculator-widget-wrapper .type-name {
    font-size: 24px;
    color: #1a1a2e;
    font-weight: 700;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .type-name {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 500;
}

.wr-calculator-widget-wrapper .type-desc {
    font-size: 13px;
    color: #666;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .type-desc {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.75);
    max-width: none;
}

.wr-calculator-widget-wrapper .drawings-type-icon {
    width: 40px;
    height: 40px;
    background: #e8e8e8;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    line-height: 1;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.wr-calculator-widget-wrapper .drawings-level-number {
    font-size: 20px;
    line-height: 1.05;
    color: #2d6cff;
    margin-bottom: 6px;
    font-weight: 500;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .drawings-type-btn.selected .type-desc,
.wr-calculator-widget-wrapper .drawings-calc-wrap .drawings-type-btn.selected .drawings-level-number {
    color: #fff;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .drawings-type-btn.selected .drawings-type-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.wr-calculator-widget-wrapper .drawings-field-row {
    max-width: 500px;
    margin-bottom: 0;
}

.wr-calculator-widget-wrapper .drawings-option-section {
    margin-top: 20px;
}

.wr-calculator-widget-wrapper .drawings-substep-label {
    margin-bottom: 10px;
}

.wr-calculator-widget-wrapper .drawings-check-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .field label,
.wr-calculator-widget-wrapper .drawings-calc-wrap .check-item,
.wr-calculator-widget-wrapper .drawings-calc-wrap .addon-toggle-label {
    color: rgba(255, 255, 255, 0.86);
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .field label {
    font-size: 12px;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 8px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .field input,
.wr-calculator-widget-wrapper .drawings-calc-wrap .field select,
.wr-calculator-widget-wrapper .drawings-calc-wrap .field textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    color: #fff;
    min-height: 44px;
    padding: 12px 14px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .field input::placeholder,
.wr-calculator-widget-wrapper .drawings-calc-wrap .field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .field input:focus,
.wr-calculator-widget-wrapper .drawings-calc-wrap .field select:focus,
.wr-calculator-widget-wrapper .drawings-calc-wrap .field textarea:focus {
    border-color: rgba(45, 108, 255, 0.72);
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .check-item,
.wr-calculator-widget-wrapper .drawings-calc-wrap .addon-toggle-row {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    min-height: 44px;
    padding: 12px 14px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .check-item input,
.wr-calculator-widget-wrapper .drawings-calc-wrap .addon-toggle-row input,
.wr-calculator-widget-wrapper .drawings-inline-check input {
    accent-color: var(--red);
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.wr-calculator-widget-wrapper .drawings-option-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 14px 16px;
    max-width: 760px;
}

.wr-calculator-widget-wrapper .drawings-inline-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.wr-calculator-widget-wrapper .drawings-inline-check-text {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
}

.wr-calculator-widget-wrapper .drawings-dense-fields {
    margin-top: 14px;
}

.wr-calculator-widget-wrapper .drawings-dense-field {
    max-width: 260px;
}

.wr-calculator-widget-wrapper .drawings-dense-note {
    font-size: 12px;
    color: #ff5f6d;
    margin-top: 8px;
}

.wr-calculator-widget-wrapper .drawings-addon-row {
    max-width: 760px;
}

.wr-calculator-widget-wrapper .drawings-addon-row-spaced {
    margin-top: 8px;
}

.wr-calculator-widget-wrapper .result-block {
    background: var(--blue);
    border-radius: 4px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 24px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .result-block {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
}

.wr-calculator-widget-wrapper .drawings-result-label {
    margin-bottom: 16px;
}

.wr-calculator-widget-wrapper .result-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .result-label,
.wr-calculator-widget-wrapper .drawings-calc-wrap #dResultSub {
    color: rgba(255, 255, 255, 0.82);
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .result-label {
    font-size: 11px;
    letter-spacing: 0.12em;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap #dResultSub {
    font-size: 14px;
    line-height: 1.45;
    margin-top: 4px;
}

.wr-calculator-widget-wrapper .result-price {
    font-size: 54px;
    font-weight: 700;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .result-price {
    font-size: clamp(44px, 5vw, 56px);
    font-weight: 500;
}

.wr-calculator-widget-wrapper .includes-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wr-calculator-widget-wrapper .includes-list li {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .includes-list li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wr-calculator-widget-wrapper .includes-list li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
}

.wr-calculator-widget-wrapper .drawings-calc-wrap .disclaimer p {
    color: rgba(255, 255, 255, 0.68);
}

.wr-calculator-widget-wrapper .drawings-disclaimer {
    margin-bottom: 20px;
}

.wr-calculator-widget-wrapper .drawings-includes-list {
    margin-bottom: 24px;
}

.wr-calculator-widget-wrapper .drawings-cta-btn {
    width: 100% !important;
    max-width: 100%;
    margin: 16px 0 0;
    padding: 16px 22px !important;
    border-radius: 0;
    letter-spacing: 0.02em;
    background: #c72b3c;
    box-shadow: none;
    text-transform: none;
    font-size: 14px;
    min-height: 52px;
}

.wr-calculator-widget-wrapper .drawings-cta-btn:hover {
    background: #d83a4a;
}


/* ORDER PAGE (inside modal) */
.wr-calculator-widget-wrapper .order-page {
    background: var(--black);
    padding: 34px 38px 52px;
}

.wr-calculator-widget-wrapper .order-header {
    max-width: 948px;
    margin: 0 auto 28px;
}

.wr-calculator-widget-wrapper .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--faint);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    transition: color 0.18s;
}

.wr-calculator-widget-wrapper .back-btn:hover {
    color: var(--white);
}

.wr-calculator-widget-wrapper .order-header h2 {
    font-size: clamp(32px, 4vw, 58px);
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.02;
    margin-bottom: 6px;
    font-weight: 600;
}

.wr-calculator-widget-wrapper .order-header p {
    font-size: 16px;
    color: #b7b7b7;
    font-weight: 400;
}

.wr-calculator-widget-wrapper .order-summary {
    max-width: 948px;
    margin: 0 auto 34px;
    background: #242424;
    border: none;
    border-radius: 0;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.wr-calculator-widget-wrapper .order-summary-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f2f2f2;
    margin-bottom: 6px;
}

.wr-calculator-widget-wrapper .order-summary-items {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
}

.wr-calculator-widget-wrapper .order-summary-total {
    font-size: clamp(42px, 5vw, 56px);
    color: var(--white);
    white-space: nowrap;
    font-weight: 500;
    line-height: 1;
}

.wr-calculator-widget-wrapper .order-summary-total span {
    font-size: 14px;
    color: #d1d1d1;
    font-weight: 400;
}

.wr-calculator-widget-wrapper .order-form {
    max-width: 948px;
    margin: 0 auto;
}

.wr-calculator-widget-wrapper .form-section {
    margin-bottom: 36px;
}

.wr-calculator-widget-wrapper .cols-1 {
    grid-template-columns: 1fr;
}

.wr-calculator-widget-wrapper .cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.wr-calculator-widget-wrapper .file-upload-area {
    border: 2px dashed #2a2a2a;
    border-radius: 3px;
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.wr-calculator-widget-wrapper .file-upload-area:hover,
.wr-calculator-widget-wrapper .file-upload-area.drag-over {
    border-color: var(--blue);
    background: #161629;
}

.wr-calculator-widget-wrapper .file-upload-area input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.wr-calculator-widget-wrapper .file-upload-icon {
    margin-bottom: 10px;
    opacity: 0.3;
}

.wr-calculator-widget-wrapper .file-upload-area p {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
}

.wr-calculator-widget-wrapper .file-upload-area strong {
    color: var(--white);
    font-weight: 600;
}

.wr-calculator-widget-wrapper .file-upload-area small {
    font-size: 11px;
    color: var(--faint);
    display: block;
    margin-top: 6px;
}

.wr-calculator-widget-wrapper #fileList {
    margin-top: 12px;
}

.wr-calculator-widget-wrapper .file-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 4px 10px;
    font-size: 12px;
    color: #aaa;
    margin: 4px 4px 0 0;
}

.wr-calculator-widget-wrapper .disclaimer {
    background: #0f0f0f;
    border: 1px solid #222;
    border-left: 3px solid var(--blue);
    border-radius: 3px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.wr-calculator-widget-wrapper .disclaimer p {
    font-size: 12px;
    color: #efefef;
    font-weight: 400;
    line-height: 1.45;
}

.wr-calculator-widget-wrapper .disclaimer strong {
    color: #fff;
    font-weight: 600;
}

.wr-calculator-widget-wrapper .submit-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
}

.wr-calculator-widget-wrapper .submit-row .btn {
    width: 100%;
    min-width: 0;
    padding: 18px 24px;
    font-size: 14px;
}

.wr-calculator-widget-wrapper .submit-note {
    font-size: 12px;
    color: var(--faint);
    font-weight: 300;
    margin: 0;
}

.wr-calculator-widget-wrapper .success-page {
    background: var(--black);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.wr-calculator-widget-wrapper .success-inner {
    max-width: 520px;
}

.wr-calculator-widget-wrapper .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0e2a1c;
    border: 2px solid #2d7a4f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.wr-calculator-widget-wrapper .success-inner h2 {
    font-size: 48px;
    color: var(--white);
    letter-spacing: 0.01em;
    margin-bottom: 12px;
    font-weight: 700;
}

.wr-calculator-widget-wrapper .success-inner p {
    font-size: 15px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
}

.wr-calculator-widget-wrapper .success-inner .btn {
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .wr-calculator-widget-wrapper .order-page {
        padding: 32px 16px 48px;
    }

    .wr-calculator-widget-wrapper .cols-2,
    .wr-calculator-widget-wrapper .cols-3 {
        grid-template-columns: 1fr;
    }

    .wr-calculator-widget-wrapper .order-summary {
        flex-direction: column;
        gap: 8px;
    }

    .wr-calculator-widget-wrapper .order-summary-total {
        font-size: 28px;
    }

    .wr-calculator-widget-wrapper .submit-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Statement Widget
   ============================================================ */
.statement-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.statement-container {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.statement-subtitle {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.statement-text {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
}
.statement-word {
    display: inline;
    color: rgba(17, 17, 17, 0.25);
    transition: color 0.3s ease;
}
.statement-word.lit { color: #111111; }
.swirl-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    width: 350px;
}
.swirl-left { left: 0; }
.swirl-right { right: 0; }
@media (max-width: 768px) {
    .statement-text { font-size: 24px; }
    .swirl-bg { width: 150px; opacity: 0.2; }
}

/* ============================================================
   Statement V2 Widget
   ============================================================ */
.statement-v2-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
}
.statement-v2-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.v2-subtitle {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #111;
    margin-bottom: 20px;
}
.v2-text {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
}
.v2-word {
    display: inline;
    color: rgba(17, 17, 17, 0.25);
    transition: color 0.3s ease;
}
.v2-word.lit { color: #111111; }
.v2-btn-wrapper { margin-top: 35px; }
.v2-red-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #B22234;
    color: #FFFFFF !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    width: 118px;
    height: 48px;
    transition: background-color 0.3s ease;
}
.v2-red-btn:hover { background-color: #000; }
.swirl-v2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    width: 300px;
}
@media (max-width: 768px) {
    .v2-text { font-size: 24px; }
    .swirl-v2 { width: 120px; opacity: 0.2; }
}

/* ============================================================
   Blog / Post Content Widgets
   ============================================================ */
.woodrock-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 100px 0;
}
.entry-content-fixed {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}
.entry-content-fixed h1,
.entry-content-fixed h2,
.entry-content-fixed h3 {
    color: #111;
    font-weight: 700;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}
.entry-content-fixed h2 { font-size: 32px; }
.entry-content-fixed h3 { font-size: 26px; }
.entry-content-fixed p { margin-bottom: 25px; }
.entry-content-fixed blockquote {
    border-left: 4px solid #2b59ff;
    padding-left: 30px;
    margin: 40px 0;
}
.entry-content-fixed blockquote p {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}
.woodrock-body-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
}
.body-content-inner {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}
.body-content-inner h2 { font-size: 32px; font-weight: 700; margin: 40px 0 20px; color: #111; }
.body-content-inner p { margin-bottom: 25px; }
.body-content-inner blockquote {
    border-left: 4px solid #2b59ff;
    padding-left: 30px;
    margin: 40px 0;
}
.body-content-inner blockquote p { font-size: 24px; font-weight: 700; color: #111; }

/* Blog Detail Widget */
.woodrock-post-detail { padding: 60px 0 100px 0; background: #fff; }
.post-container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.post-header-main { text-align: center; margin-bottom: 60px; }
.entry-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}
.entry-meta-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}
.meta-box { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.meta-label { font-size: 11px; text-transform: uppercase; color: #888; font-weight: 600; margin-bottom: 6px; letter-spacing: 0.5px; }
.meta-data { font-size: 14px; color: #111; font-weight: 700; font-family: 'DM Sans', sans-serif; }
.entry-featured-media { margin-bottom: 70px; width: 100%; }
.entry-featured-media img { width: 100%; height: auto; border-radius: 2px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.entry-content-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}
.entry-content-body h2,
.entry-content-body h3 { color: #111; font-weight: 700; margin: 50px 0 25px 0; line-height: 1.3; }
.entry-content-body p { margin-bottom: 30px; }
.entry-content-body blockquote {
    position: relative;
    margin: 50px 0;
    padding: 0 0 0 40px;
    border-left: 4px solid #2b59ff;
}
.entry-content-body blockquote p { font-size: 24px; font-weight: 700; color: #111; line-height: 1.4; margin-bottom: 10px; }
.entry-content-body blockquote cite { font-size: 14px; color: #888; font-style: normal; font-weight: 500; }
@media (max-width: 768px) {
    .entry-title { font-size: 34px; }
    .entry-meta-grid { flex-direction: column; gap: 25px; align-items: center; }
    .meta-box { align-items: center; text-align: center; }
    .entry-content-body blockquote p { font-size: 20px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PERGOLUX REQUEST WIDGET
   ═══════════════════════════════════════════════════════════════════════════ */

.wr-pergolux-widget-wrapper {
    font-family: 'DM Sans', sans-serif;
}

/* ── FADE ANIMATION ── */
@keyframes plxFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── SECTION ── */
.wr-pergolux-widget-wrapper .plx-stamp-section { background: #fff; padding: 0; }

/* ── HEADER BAND ── */
.wr-pergolux-widget-wrapper .plx-header-band {
    background: #0d0d0d !important;
    padding: 56px 40px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.wr-pergolux-widget-wrapper .plx-header-band::after {
    content: 'WR';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 340px;
    color: rgba(255,255,255,0.012);
    position: absolute;
    right: -40px;
    bottom: -60px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.wr-pergolux-widget-wrapper .plx-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.wr-pergolux-widget-wrapper .plx-logo-wrap img {
    height: 80px;
    width: auto;
    filter: invert(1);
}
.wr-pergolux-widget-wrapper .plx-section-header { margin-bottom: 0; }
.wr-pergolux-widget-wrapper .plx-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #B22234;
    margin-bottom: 10px;
    display: block;
}
.wr-pergolux-widget-wrapper .plx-section-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 54px;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}
.wr-pergolux-widget-wrapper .plx-section-header p {
    color: #888888;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 300;
}

/* ── CONTENT AREA ── */
.wr-pergolux-widget-wrapper .plx-content-area { max-width: 1080px; margin: 0 auto; padding: 36px 40px; }

.wr-pergolux-widget-wrapper .plx-cta-block { background: #111111; padding: 22px 24px 24px; border: 1px solid #222222; border-radius: 2px; }
.wr-pergolux-widget-wrapper .plx-cta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #888888; margin: 0 0 14px; }
.wr-pergolux-widget-wrapper .plx-faq-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.wr-pergolux-widget-wrapper .plx-faq-cta-btns .plx-btn { flex: 1; min-width: 200px; }

/* ── INFO BANNER ── */
.wr-pergolux-widget-wrapper .plx-product-banner {
    max-width: 1000px;
    margin: 0 auto 28px;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #B22234;
    border-radius: 3px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wr-pergolux-widget-wrapper .plx-product-banner-icon { font-size: 20px; flex-shrink: 0; }
.wr-pergolux-widget-wrapper .plx-product-banner p { font-size: 13px; color: #888888; font-weight: 300; line-height: 1.5; }
.wr-pergolux-widget-wrapper .plx-product-banner strong { color: #ffffff; font-weight: 600; }

/* ── CARD GRID ── */
.wr-pergolux-widget-wrapper .plx-pkg-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 28px;
}

/* ── CARDS ── */
.wr-pergolux-widget-wrapper .plx-stamp-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-top: 4px solid #1A56DB;
    border-radius: 4px;
    padding: 36px 28px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    min-width: 0;
    overflow: hidden;
}
.wr-pergolux-widget-wrapper .plx-stamp-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.wr-pergolux-widget-wrapper .plx-stamp-card.plx-featured { border-top-color: #1A56DB; background: #1c1c1c; box-shadow: 0 4px 20px rgba(26,86,219,0.3); }
.wr-pergolux-widget-wrapper .plx-card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 0 0 3px 3px;
    white-space: nowrap;
}
.wr-pergolux-widget-wrapper .plx-badge-blue { background: #1A56DB; color: #fff; }
.wr-pergolux-widget-wrapper .plx-badge-red { background: #B22234; color: #fff; }
.wr-pergolux-widget-wrapper .plx-card-type {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #3774FB;
    margin-bottom: 10px;
}
.wr-pergolux-widget-wrapper .plx-stamp-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    color: #ffffff !important;
    letter-spacing: 0.01em;
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 700;
}
.wr-pergolux-widget-wrapper .plx-card-desc { font-size: 14px; color: #CFCFCF; font-weight: 400; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.wr-pergolux-widget-wrapper .plx-price-row { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.wr-pergolux-widget-wrapper .plx-price-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    line-height: 1;
    color: #ffffff;
    font-weight: 400;
}
.wr-pergolux-widget-wrapper .plx-price-sub { font-size: 14px; color: #919191; padding-bottom: 8px; line-height: 1.4; white-space: nowrap; align-self: flex-end; }
.wr-pergolux-widget-wrapper .plx-feat-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #B22234;
    margin: 14px 0 6px;
    display: block;
}
.wr-pergolux-widget-wrapper .plx-feat-list { list-style: none; margin: 0 0 20px 0; padding: 0; flex-grow: 1; }
.wr-pergolux-widget-wrapper .plx-feat-list li {
    font-size: 14px;
    color: #ffffff;
    padding: 7px 0;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    align-items: center;
    gap: 9px;
}
.wr-pergolux-widget-wrapper .plx-feat-list li:last-child { border-bottom: none; }
.wr-pergolux-widget-wrapper .plx-feat-list li::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid #1A56DB;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1,4 4,7 9,1' fill='none' stroke='%231A56DB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/8px no-repeat;
}
.wr-pergolux-widget-wrapper .plx-card-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #2a2a2a;
    margin-top: 14px;
    padding-top: 12px;
    margin-bottom: 14px;
}
.wr-pergolux-widget-wrapper .plx-card-total-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #555555; }
.wr-pergolux-widget-wrapper .plx-card-total-price { font-family: 'DM Sans', sans-serif; font-size: 48px; color: #ffffff; line-height: 1.1; font-weight: 400; }

/* ── BUTTONS ── */
.wr-pergolux-widget-wrapper .plx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.18s;
    width: 100%;
    text-decoration: none;
}
.wr-pergolux-widget-wrapper .plx-btn-blue { background: #1A56DB; color: #fff; border-color: #1A56DB; }
.wr-pergolux-widget-wrapper .plx-btn-blue:hover { background: #1648c0; border-color: #1648c0; }
.wr-pergolux-widget-wrapper .plx-btn-red { background: #B22234; color: #fff; border-color: #B22234; }
.wr-pergolux-widget-wrapper .plx-btn-red:hover { background: #961d2b; border-color: #961d2b; }

/* ── CUSTOM NOTICE ── */
.wr-pergolux-widget-wrapper .plx-custom-notice {
    max-width: 1000px;
    margin: 0 auto;
    background: #1c1c1c;
    border: 1px dashed #2a2a2a;
    border-top: 4px solid #B22234;
    border-radius: 4px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.wr-pergolux-widget-wrapper .plx-custom-notice-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.wr-pergolux-widget-wrapper .plx-custom-notice-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B22234;
    margin-bottom: 4px;
}
.wr-pergolux-widget-wrapper .plx-custom-notice-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}
.wr-pergolux-widget-wrapper .plx-custom-notice-desc { font-size: 13px; color: #888888; font-weight: 300; line-height: 1.6; }

/* ── TRUST BAR ── */
.wr-pergolux-widget-wrapper .plx-trust-bar {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid #2a2a2a;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.wr-pergolux-widget-wrapper .plx-trust-item { display: flex; align-items: center; gap: 10px; color: #6b7280; }
.wr-pergolux-widget-wrapper .plx-trust-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.wr-pergolux-widget-wrapper .dot-blue { background: #1A56DB; }
.wr-pergolux-widget-wrapper .dot-red { background: #B22234; }
.wr-pergolux-widget-wrapper .dot-white { background: #d0d4de; }

/* ── MODAL OVERLAY ── */
.wr-pergolux-widget-wrapper .plx-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 100000;
    padding: 40px 20px;
    overflow-y: auto;
}
.wr-pergolux-widget-wrapper .plx-modal-overlay.active { display: flex; }
.wr-pergolux-widget-wrapper .plx-modal-content {
    background: #000;
    width: 100%;
    max-width: 840px;
    border: 1px solid #222;
    border-radius: 4px;
    position: relative;
    padding: 0;
}
.wr-pergolux-widget-wrapper .plx-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}
.wr-pergolux-widget-wrapper .plx-modal-close:hover { color: #fff; }
.wr-pergolux-widget-wrapper .plx-modal-page { display: none; }
.wr-pergolux-widget-wrapper .plx-modal-page.plx-modal-page-active { display: block; }

/* ── ORDER PAGE (inside modal) ── */
.wr-pergolux-widget-wrapper .plx-order-header {
    max-width: 948px;
    margin: 0 auto 28px;
    padding: 34px 38px 0;
}
.wr-pergolux-widget-wrapper .plx-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555555;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    transition: color 0.18s;
}
.wr-pergolux-widget-wrapper .plx-back-btn:hover { color: #ffffff; }
.wr-pergolux-widget-wrapper .plx-order-header h2 {
    font-size: clamp(32px, 4vw, 58px);
    color: #ffffff !important;
    letter-spacing: 0.01em;
    line-height: 1.02;
    margin-bottom: 6px;
    font-weight: 600;
}
.wr-pergolux-widget-wrapper .plx-order-header p { font-size: 16px; color: #b7b7b7; font-weight: 400; }
.wr-pergolux-widget-wrapper .plx-order-summary {
    max-width: 948px;
    margin: 0 auto 34px;
    background: #242424;
    border: none;
    border-radius: 0;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.wr-pergolux-widget-wrapper .plx-order-summary-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #f2f2f2; margin-bottom: 6px; }
.wr-pergolux-widget-wrapper .plx-order-summary-items { font-size: 16px; color: #ffffff; font-weight: 400; }
.wr-pergolux-widget-wrapper .plx-order-summary-total { font-size: clamp(42px, 5vw, 56px); color: #ffffff; white-space: nowrap; font-weight: 500; line-height: 1; }
.wr-pergolux-widget-wrapper .plx-order-summary-total span { font-size: 14px; color: #d1d1d1; font-weight: 400; font-family: 'DM Sans', sans-serif; }
.wr-pergolux-widget-wrapper .plx-order-form { max-width: 948px; margin: 0 auto; padding: 0 38px 52px; }
.wr-pergolux-widget-wrapper .plx-form-section { margin-bottom: 36px; }
.wr-pergolux-widget-wrapper .plx-form-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B22234;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1e1e1e;
}
.wr-pergolux-widget-wrapper .plx-form-row { display: grid; gap: 20px; margin-bottom: 24px; }
.wr-pergolux-widget-wrapper .plx-form-row.plx-cols-2 { grid-template-columns: 1fr 1fr; }
.wr-pergolux-widget-wrapper .plx-form-row.plx-cols-1 { grid-template-columns: 1fr; }
.wr-pergolux-widget-wrapper .plx-field { display: flex; flex-direction: column; gap: 6px; }
.wr-pergolux-widget-wrapper .plx-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 8px;
    display: block;
}
.wr-pergolux-widget-wrapper .plx-field input,
.wr-pergolux-widget-wrapper .plx-field select,
.wr-pergolux-widget-wrapper .plx-field textarea {
    background: #ffffff;
    border: 1px solid #c8cdd8;
    border-radius: 2px;
    color: #111111;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.wr-pergolux-widget-wrapper .plx-field input:focus,
.wr-pergolux-widget-wrapper .plx-field select:focus,
.wr-pergolux-widget-wrapper .plx-field textarea:focus { border-color: #1A56DB; }
.wr-pergolux-widget-wrapper .plx-field input::placeholder,
.wr-pergolux-widget-wrapper .plx-field textarea::placeholder { color: #aaaaaa; }
.wr-pergolux-widget-wrapper .plx-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    background-color: #ffffff;
}
.wr-pergolux-widget-wrapper .plx-field select option { background: #fff; color: #111; }

/* ── FILE UPLOAD ── */
.wr-pergolux-widget-wrapper .plx-file-upload-area {
    border: 2px dashed #2a2a2a;
    border-radius: 3px;
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.wr-pergolux-widget-wrapper .plx-file-upload-area:hover,
.wr-pergolux-widget-wrapper .plx-file-upload-area.drag-over { border-color: #1A56DB; background: #161629; }
.wr-pergolux-widget-wrapper .plx-file-upload-area input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.wr-pergolux-widget-wrapper .plx-file-upload-icon { margin-bottom: 10px; opacity: 0.3; }
.wr-pergolux-widget-wrapper .plx-file-upload-area p { font-size: 14px; color: #888888; font-weight: 300; }
.wr-pergolux-widget-wrapper .plx-file-upload-area strong { color: #ffffff; font-weight: 600; }
.wr-pergolux-widget-wrapper .plx-file-upload-area small { font-size: 11px; color: #555555; display: block; margin-top: 6px; }
.wr-pergolux-widget-wrapper .plx-file-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 2px;
    padding: 4px 10px;
    font-size: 12px;
    color: #aaaaaa;
    margin: 4px 4px 0 0;
}
.wr-pergolux-widget-wrapper .plx-file-chip svg { cursor: pointer; opacity: 0.5; }
.wr-pergolux-widget-wrapper .plx-file-chip svg:hover { opacity: 1; }

/* ── DISCLAIMER ── */
.wr-pergolux-widget-wrapper .plx-disclaimer {
    background: #0f0f0f;
    border: 1px solid #222222;
    border-left: 3px solid #1A56DB;
    border-radius: 3px;
    padding: 16px 20px;
    margin-bottom: 28px;
}
.wr-pergolux-widget-wrapper .plx-disclaimer p { font-size: 12px; color: #efefef; font-weight: 400; line-height: 1.45; }
.wr-pergolux-widget-wrapper .plx-disclaimer strong { color: #ffffff; font-weight: 600; }
.wr-pergolux-widget-wrapper .plx-submit-row { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: start; }
.wr-pergolux-widget-wrapper .plx-submit-row .plx-btn { width: 100%; min-width: 0; padding: 18px 24px; font-size: 14px; }
.wr-pergolux-widget-wrapper .plx-submit-note { font-size: 12px; color: #555555; font-weight: 300; margin: 0; }

/* ── SUCCESS PAGE (inside modal) ── */
.wr-pergolux-widget-wrapper .plx-success-inner {
    max-width: 520px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    margin: 0 auto;
}
.wr-pergolux-widget-wrapper .plx-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0e2a1c;
    border: 2px solid #2d7a4f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}
.wr-pergolux-widget-wrapper .plx-success-inner h2 {
    font-size: 48px;
    color: #ffffff !important;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
    font-weight: 700;
}
.wr-pergolux-widget-wrapper .plx-success-inner p { font-size: 15px; color: #888888; font-weight: 300; line-height: 1.6; margin-bottom: 32px; }
.wr-pergolux-widget-wrapper .plx-success-inner .plx-btn { max-width: 260px; margin: 0 auto; }

/* ── CF7 FORM ── */
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7 > .woodrock-cf7-row,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7 > .woodrock-cf7-full,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7 > .form-section,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7 > .woodrock-cf7-submit-wrap {
    grid-column: 1 / -1;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .form-section {
    margin-bottom: 34px;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .form-section:last-of-type {
    margin-bottom: 28px;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .form-section .woodrock-cf7-row:last-child {
    margin-bottom: 0;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .form-section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1A56DB;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-field {
    min-width: 0;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-full {
    grid-column: 1 / -1;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-form {
    display: grid;
    gap: 16px;
    color: #fff;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-form p {
    margin: 0;
    min-width: 0;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #f3f3f3 !important;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="submit"]),
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap select,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #242424 !important;
    border: 1px solid #242424 !important;
    border-radius: 0;
    color: #fff !important;
    font-size: 15px;
    padding: 12px 14px;
    outline: none;
    box-shadow: none !important;
    opacity: 1 !important;
    font-family: 'DM Sans', sans-serif;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid #444 !important;
    background: #1a1a1a !important;
    border-radius: 3px;
    cursor: pointer;
    padding: 0;
    vertical-align: middle;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input[type="checkbox"]:checked {
    background: #1A56DB !important;
    border-color: #1A56DB !important;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    width: 9px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(2px, 1px);
    position: absolute;
    top: 2px;
    left: 2px;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-list-item:last-child { margin-bottom: 0; }
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #d0d0d0 !important;
    cursor: pointer;
    font-weight: 400;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input:not([type="checkbox"]):not([type="radio"]):focus,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap select:focus,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap textarea:focus {
    border-color: #1A56DB !important;
    background: #292929 !important;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input::placeholder,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap textarea::placeholder {
    color: #8f8f8f;
    opacity: 1;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input:-webkit-autofill,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input:-webkit-autofill:hover,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input:-webkit-autofill:focus,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap textarea:-webkit-autofill,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap select:-webkit-autofill {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px #242424 inset;
    transition: background-color 9999s ease-in-out 0s;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-file-field label {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0;
    font-weight: 600;
    color: transparent !important;
    border-top: none;
    padding-top: 0;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input[type="file"] {
    position: absolute;
    inset: 34px 0 0 0;
    width: 100%;
    height: calc(100% - 34px);
    padding: 0;
    border: none !important;
    background: transparent !important;
    color: transparent !important;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .pricing-file-dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 138px;
    padding: 28px;
    border: 1px dashed #1A56DB;
    background: #242424;
    text-align: center;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .pricing-file-dropzone-icon {
    font-size: 34px;
    line-height: 1;
    color: #efefef;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .pricing-file-dropzone-copy {
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    color: #9c9c9c;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .pricing-file-dropzone-copy strong {
    color: #fff;
    font-weight: 700;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .pricing-file-dropzone-meta,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .pricing-file-dropzone-files {
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    color: #b8b8b8;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .pricing-file-dropzone-files {
    color: #cfcfcf;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-file-field.has-files .pricing-file-dropzone {
    border-color: rgba(26, 86, 219, 0.75);
    background: rgba(26, 86, 219, 0.08);
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-file-field.has-files .pricing-file-dropzone-copy {
    color: #d7d7d7;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-submit,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input[type="submit"] {
    appearance: none;
    border: none;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    background: #1A56DB !important;
    color: #fff !important;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    justify-self: stretch;
    box-sizing: border-box;
    border-radius: 0;
    font-family: 'DM Sans', sans-serif;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-submit:hover,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap input[type="submit"]:hover {
    background: #1648c0 !important;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-spinner {
    margin: 10px 0 0;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #ff8c8c;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .wpcf7-response-output {
    margin: 16px 0 0 !important;
    padding: 14px 16px !important;
    border: 1px solid #2a2a2a !important;
    color: #fff;
    font-size: 14px;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-submit-wrap {
    flex: none;
    width: 100%;
    min-width: 0;
    display: block;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-submit-wrap .wpcf7-submit,
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-submit-wrap input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .submit-note {
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 12px;
    color: #d7d7d7;
    font-weight: 400;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .form-section .disclaimer {
    background: transparent;
    border: none;
    padding: 0;
    margin: 10px 0 0;
}
.wr-pergolux-widget-wrapper .plx-cf7-form-wrap .form-section .disclaimer p {
    font-size: 12px;
    color: #efefef;
    line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .wr-pergolux-widget-wrapper .plx-header-band { padding: 40px 20px 28px; }
    .wr-pergolux-widget-wrapper .plx-content-area { padding: 24px 20px; }
    .wr-pergolux-widget-wrapper .plx-pkg-grid { grid-template-columns: 1fr; }
    .wr-pergolux-widget-wrapper .plx-custom-notice { flex-direction: column; gap: 10px; }
    .wr-pergolux-widget-wrapper .plx-custom-notice-title { font-size: 18px; }
    .wr-pergolux-widget-wrapper .plx-trust-bar { display: flex; flex-direction: column; gap: 14px; padding: 24px 0 0; }
    .wr-pergolux-widget-wrapper .plx-trust-item { font-size: 12px; }
    .wr-pergolux-widget-wrapper .plx-modal-overlay { padding: 0; }
    .wr-pergolux-widget-wrapper .plx-modal-content { border-radius: 0; min-height: 100vh; }
    .wr-pergolux-widget-wrapper .plx-order-header { padding: 32px 16px 0; }
    .wr-pergolux-widget-wrapper .plx-order-form { padding: 0 16px 48px; }
    .wr-pergolux-widget-wrapper .plx-order-summary { flex-direction: column; gap: 8px; }
    .wr-pergolux-widget-wrapper .plx-order-summary-total { font-size: 28px; }
    .wr-pergolux-widget-wrapper .plx-form-row.plx-cols-2 { grid-template-columns: 1fr; }
    .wr-pergolux-widget-wrapper .plx-field input,
    .wr-pergolux-widget-wrapper .plx-field select,
    .wr-pergolux-widget-wrapper .plx-field textarea { font-size: 16px; }
    .wr-pergolux-widget-wrapper .plx-faq-cta-btns { flex-direction: column; }
    .wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7 { grid-template-columns: 1fr; }
    .wr-pergolux-widget-wrapper .plx-cf7-form-wrap .woodrock-cf7-row { grid-template-columns: 1fr; }
    .wr-pergolux-widget-wrapper .plx-faq-cta-btns .plx-btn { min-width: unset; }
    .licensing-map-section{
    padding: 60px 0px;
    }
}
