/**
 * Walk The Dragon - Corporate/Enterprise Landing Page
 * Precise Figma Implementation
 * Base viewport: 1728px
 */

/* ============================================
   GLOBAL RESET
   ============================================ */

.wtd-corporate {
    font-family: 'manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0c0c0c;
    background: linear-gradient(to bottom, #ffffff 0%, #e6e5e1 15.86%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
}

.wtd-corporate *,
.wtd-corporate *::before,
.wtd-corporate *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Page wrapper - Max 1728px centered */
.wtd-page-wrap {
    max-width: 1728px;
    margin: 0 auto;
    position: relative;
}

/* Typography */
.wtd-heading {
    font-family: 'biennale', serif;
    font-weight: 400;
}

.wtd-heading-medium {
    font-family: 'biennale', serif;
    font-weight: 500;
}

.wtd-heading-semibold {
    font-family: 'biennale', serif;
    font-weight: 600;
}

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

.wtd-hero {
    position: relative;
    padding: 223px 0 330px;
    overflow: hidden;
}

.wtd-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.wtd-hero-bg-image {
    position: absolute;
    top: 180px;
    right: 0;
    width: 60%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

.wtd-hero-blur {
    position: absolute;
    filter: blur(100px);
    background: #fefdfd;
}

.wtd-hero-blur-1 {
    width: 884px;
    height: 435px;
    top: 259px;
    right: 739px;
}

.wtd-hero-blur-2 {
    width: 475px;
    height: 462px;
    top: 18px;
    right: -257px;
}

.wtd-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 140px;
    max-width: 1728px;
    margin: 0 auto;
}

.wtd-hero-tag {
    display: inline-flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #F6F6F6;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5A5A5A;
    margin-bottom: 24px;
    font-family: 'biennale', serif;
}

.wtd-hero-title {
    font-size: 64px;
    line-height: 76px;
    color: #0c0c0c;
    margin-bottom: 32px;
    max-width: 1100px;
}

.wtd-hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 32px;
    max-width: 871px;
}

.wtd-hero-cta {
    display: flex;
    gap: 24px;
}

/* Buttons */
.wtd-btn {
    font-family: 'biennale', serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.wtd-btn-primary {
    background: #0c0c0c;
    color: #fefaf7;
}

.wtd-btn-primary:hover {
    background: #2a2a2a;
}

.wtd-btn-secondary {
    background: transparent;
    color: #0c0c0c;
    border: 1px solid #0c0c0c;
}

.wtd-btn-secondary:hover {
    background: #0c0c0c;
    color: #fefaf7;
}

/* ============================================
   STATS BAR - Centered 1664px
   ============================================ */

.wtd-stats-bar {
    background: linear-gradient(to bottom, #f6f5f1 0%, #fffbf8 100%);
    border: 1px solid #bababa;
    border-radius: 24px;
    padding: 64px 100px;
    max-width: 1664px;
    margin: -150px auto 200px;
    display: flex;
    position: relative;
    z-index: 10;
}

.wtd-stat {
    flex: 1;
    text-align: center;
    padding: 0 100px;
    border-right: 1px solid #bababa;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.wtd-stat:last-child {
    border-right: none;
}

.wtd-stat-value {
    font-family: 'manrope', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    color: #0c0c0c;
    white-space: nowrap;
}

.wtd-stat-label {
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #5a5a5a;
    white-space: nowrap;
}

.wtd-stat-label-with-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #5a5a5a;
    white-space: nowrap;
}

.wtd-stat-info-icon {
    position: relative;
    cursor: help;
    display: inline-flex;
    align-items: center;
    color: #5a5a5a;
    transition: color 0.2s ease;
}

.wtd-stat-info-icon:hover {
    color: #0c0c0c;
}

.wtd-stat-info-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #0c0c0c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.4;
    padding: 12px 16px;
    border-radius: 8px;
    white-space: normal;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wtd-stat-info-icon::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #0c0c0c;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 101;
}

.wtd-stat-info-icon:hover::after,
.wtd-stat-info-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.wtd-section-label {
    font-size: 16px;
    text-transform: uppercase;
    color: #5a5a5a;
    margin-bottom: 24px;
}

.wtd-section-title {
    font-size: 56px;
    line-height: 1.2;
    color: #0c0c0c;
    margin-bottom: 0;
}

.wtd-section-title + .wtd-section-description {
    margin-top: 48px;
}

.wtd-section-description {
    font-size: 22px;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 626px;
    margin: 0 auto;
}

/* ============================================
   PROBLEM SECTION - 3 columns
   ============================================ */

.wtd-problem-section {
    max-width: 1728px;
    margin: 0 auto 200px;
    padding: 0 140px;
}

.wtd-problem-grid-3 {
    display: flex;
}

.wtd-problem-card {
    flex: 1;
    padding: 24px;
    text-align: center;
    border-right: 1px solid #bababa;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.wtd-problem-card:last-child {
    border-right: none;
}

.wtd-problem-icon {
    width: 32px;
    height: 32px;
}

.wtd-problem-icon svg,
.wtd-problem-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.wtd-problem-title {
    font-family: 'biennale', serif;
    font-size: 32px;
    line-height: 1.2;
    color: #0c0c0c;
}

.wtd-problem-description {
    font-size: 18px;
    line-height: 1.6;
    color: #5a5a5a;
}

/* ============================================
   WISDOM SECTION - Inside problem section
   ============================================ */

.wtd-wisdom-box {
    background: linear-gradient(to bottom, #faf9f5 0%, #f9f8f4 100%);
    border-radius: 24px;
    padding: 100px;
    display: flex;
    gap: 48px;
    align-items: center;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.wtd-wisdom-content {
    flex: 1;
    max-width: 724px;
    position: relative;
    z-index: 2;
}

.wtd-wisdom-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 48px;
    max-width: 100%;
}

.wtd-wisdom-title br + strong {
    white-space: nowrap;
}

.wtd-wisdom-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wtd-meet-team-btn {
    margin-top: 40px;
    color: #5a5a5a;
    background: transparent;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'biennale', serif;
    font-weight: 500;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.wtd-meet-team-btn:hover {
    color: #0c0c0c;
}

.wtd-wisdom-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wtd-wisdom-feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.wtd-wisdom-feature-icon svg {
    width: 100%;
    height: 100%;
}

.wtd-wisdom-feature-text {
    font-size: 18px;
    line-height: 1.6;
    color: #5a5a5a;
}

.wtd-wisdom-image {
    flex: 1;
    position: relative;
    z-index: 0;
}

.wtd-monk-image {
    width: 90%;
    height: auto;
    filter: grayscale(100%);
    opacity: 1;
    margin-left: auto;
}

/* ============================================
   FEATURES SECTION - 1664px centered, 32px from edges
   ============================================ */

.wtd-features-section {
    max-width: 1664px;
    margin: 0 auto 200px;
    border: 1px solid #bababa;
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    padding: 100px 140px 200px;
    position: relative;
    overflow: hidden;
}

.wtd-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.wtd-features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(246, 245, 241, 0.65) 0%, 
        rgba(246, 245, 241, 0.65) 60%, 
        rgba(230, 229, 225, 0.95) 90%, 
        rgba(230, 229, 225, 1) 100%);
    z-index: 0;
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.wtd-features-section > * {
    position: relative;
    z-index: 1;
}

.wtd-features-section .wtd-section-header {
    margin-bottom: 0;
}

    .wtd-features-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 200px;
}

.wtd-features-row {
    display: flex;
    gap: 24px;
}

.wtd-feature-card {
    flex: 1;
    background: #fffbf8;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.wtd-feature-icon {
    width: 32px;
    height: 32px;
}

.wtd-feature-icon svg {
    width: 100%;
    height: 100%;
}

.wtd-feature-title {
    font-family: 'biennale', serif;
    font-size: 24px;
    line-height: 1.2;
    color: #0c0c0c;
}

.wtd-feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

/* ============================================
   MEASURABLE IMPACT - 1448px content
   ============================================ */

.wtd-impact-section {
    max-width: 1728px;
    margin: 0 auto 200px;
    padding: 0 140px;
}

.wtd-impact-section .wtd-section-header {
    margin-bottom: 100px;
    margin-top: -100px;
}

.wtd-impact-grid {
    display: flex;
    margin-bottom: 100px;
}

.wtd-impact-card {
    flex: 1;
    padding: 24px;
    text-align: center;
    border-right: 1px solid #bababa;
    display: flex;
        flex-direction: column;
    gap: 16px;
    align-items: center;
}

.wtd-impact-card:last-child {
    border-right: none;
}

.wtd-impact-icon {
    width: 32px;
    height: 32px;
}

.wtd-impact-title {
    font-family: 'biennale', serif;
    font-size: 24px;
    line-height: 1.2;
    color: #0c0c0c;
}

.wtd-impact-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

/* ============================================
   ROI CALCULATOR - Side by side
   ============================================ */

.wtd-roi-container {
    display: flex;
    gap: 24px;
    max-width: 1024px;
    margin: 0 auto;
    align-items: flex-start;
}

.wtd-roi-box {
    flex: 0 0 500px;
    width: 500px;
    background: linear-gradient(to bottom, #f6f5f1 0%, #fffbf8 100%);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.wtd-roi-step {
    display: none;
    flex-direction: column;
    gap: 0;
}

.wtd-roi-step.active {
    display: flex;
}

.wtd-roi-step > .wtd-btn {
    margin-top: 48px;
}

.wtd-roi-heading {
    font-family: 'biennale', serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #5a5a5a;
    margin-bottom: 0;
}

.wtd-roi-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-top: 12px;
}

.wtd-roi-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

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

.wtd-form-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #5a5a5a;
}

.wtd-form-input,
.wtd-form-select {
    background: #f6f5f1;
    border: 1px solid #bababa;
    border-radius: 12px;
    padding: 16px;
    font-family: 'manrope', sans-serif;
    font-size: 16px;
    color: #0c0c0c;
    width: 100%;
    height: 56px;
}

.wtd-form-select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%230c0c0c" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 48px;
}

.wtd-challenges-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

.wtd-challenge-item {
    background: #f6f5f1;
    border: 1px solid #bababa;
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    gap: 12px;
    cursor: pointer;
}

.wtd-challenge-item input {
    width: 20px;
    height: 20px;
}

.wtd-challenge-label {
    font-size: 16px;
    color: #0c0c0c;
}

.wtd-roi-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 48px;
}

.wtd-btn-back {
    color: #5a5a5a;
    background: transparent;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'biennale', serif;
    font-weight: 500;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wtd-btn-back:hover {
    color: #0c0c0c;
}

.wtd-back-icon {
    height: 16px;
    width: auto;
    transform: rotate(-90deg);
}

.wtd-meet-team-icon {
    height: 16px;
    width: auto;
    transform: rotate(90deg);
}

/* ROI Results */
.wtd-roi-results-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.wtd-roi-result-primary {
    background: #fffbf8;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wtd-roi-result-label {
    font-size: 16px;
    text-transform: uppercase;
    color: #5a5a5a;
}

.wtd-roi-result-value {
    font-family: 'manrope', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1;
    color: #0c0c0c;
}

.wtd-roi-result-multiplier {
    font-size: 16px;
    color: #5a5a5a;
}

.wtd-roi-breakdown {
    background: #fffbf8;
    border-radius: 24px;
    padding: 24px;
}

.wtd-roi-breakdown-title {
    font-size: 16px;
    text-transform: uppercase;
    color: #5a5a5a;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.wtd-roi-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wtd-roi-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #bababa;
}

.wtd-roi-breakdown-item:last-child {
    border-bottom: none;
}

.wtd-roi-breakdown-label {
    font-size: 16px;
    color: #0c0c0c;
}

.wtd-roi-breakdown-value {
    font-family: 'manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0c0c0c;
}

/* Your Wins section uses same styling as Annual Savings Breakdown */

.wtd-roi-metric-value {
    font-family: 'manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #0c0c0c;
    margin-bottom: 4px;
}

.wtd-roi-metric-label {
    font-size: 14px;
    line-height: 1.2;
    color: #5a5a5a;
}

.wtd-roi-cta-text {
    font-family: 'manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #0c0c0c;
    margin-top: 48px;
}

.wtd-roi-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.wtd-roi-buttons .wtd-btn {
    flex: 1;
}

/* ============================================
   PROCESS SECTION - 1664px centered
   ============================================ */

.wtd-process-section {
    max-width: 1664px;
    margin: 0 auto 200px;
    border: 1px solid #bababa;
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    padding: 100px;
    position: relative;
    overflow: hidden;
}

.wtd-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.wtd-process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(246, 245, 241, 0.65) 0%, 
        rgba(246, 245, 241, 0.65) 60%, 
        rgba(230, 229, 225, 0.95) 90%, 
        rgba(230, 229, 225, 1) 100%);
    z-index: 0;
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.wtd-process-section > * {
    position: relative;
    z-index: 1;
}

.wtd-process-section .wtd-section-header {
    margin-bottom: 0;
}

    .wtd-process-grid {
    display: flex;
    gap: 24px;
    margin-top: 200px;
    margin-bottom: 200px;
}

.wtd-process-card {
    flex: 1;
    background: #fffbf8;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wtd-process-week {
    font-size: 16px;
    text-transform: uppercase;
    color: #5a5a5a;
}

.wtd-process-title {
    font-family: 'biennale', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #0c0c0c;
}

.wtd-process-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

/* Integrations */
.wtd-integrations-wrap {
    text-align: center;
    padding-top: 124px;
}

.wtd-integrations {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
}

.wtd-integration-logo {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
}

.wtd-integration-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
}

.wtd-integration-caption {
    font-family: 'biennale', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    color: #0c0c0c;
}

/* ============================================
   PRICING SECTION - 1024px centered
   ============================================ */

.wtd-pricing-section {
    max-width: 1400px;
    margin: 0 auto 200px;
}

.wtd-pricing-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.wtd-pricing-grid-3 {
    max-width: 1560px;
    margin: 0 auto;
}

/* Medium screens - stack to single column earlier for 3 cards */
@media (max-width: 1200px) {
    .wtd-pricing-grid-3 {
        flex-direction: column;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .wtd-pricing-grid-3 .wtd-pricing-card-dark {
        order: -1;
    }
}

.wtd-pricing-card {
    flex: 1;
    background: #fffbf8;
    border: 1px solid #e1d4ca;
    border-radius: 24px;
    padding: 64px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.wtd-pricing-card > a:last-child,
.wtd-pricing-card > button:last-child {
    margin-top: auto;
}

/* Featured Enterprise Card - Warm Orange Theme */
.wtd-pricing-card-dark {
    background: #FFF8F3;
    border: 1px solid rgba(226, 143, 65, 0.25);
    box-shadow: 0 0 12px 4px rgba(226, 143, 65, 0.25);
}

.wtd-pricing-card-dark .wtd-pricing-name {
    color: #0c0c0c;
}

.wtd-pricing-card-dark .wtd-pricing-pilot {
    color: #5a5a5a;
}

.wtd-pricing-card-dark .wtd-pricing-feature-text {
    color: #0c0c0c;
}

.wtd-pricing-card-dark .wtd-pricing-feature {
    border-bottom-color: rgba(226, 143, 65, 0.15);
}

.wtd-pricing-card-dark .wtd-pricing-feature-icon svg {
    stroke: #0c0c0c;
}

/* Featured card button - Orange theme */
.wtd-btn-primary-light {
    background: #E28F41;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wtd-btn-primary-light:hover {
    background: #c97a32;
    transform: translateY(-1px);
}

.wtd-pricing-name {
    font-family: 'biennale', serif;
    font-size: 32px;
    line-height: 1;
    color: #0c0c0c;
    margin-bottom: 0;
    text-align: center;
}

.wtd-pricing-pilot {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.wtd-pricing-seats {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-top: -24px;
}

.wtd-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.wtd-pricing-feature {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 0;
    border-bottom: none;
}

.wtd-pricing-feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wtd-pricing-feature-icon svg {
    width: 24px;
    height: 24px;
}

.wtd-pricing-feature-text {
    font-size: 20px;
    line-height: 1.4;
    color: #5a5a5a;
    white-space: nowrap;
}

/* Disabled features (with X icon) */
.wtd-feature-disabled {
    opacity: 0.5;
}

/* ============================================
   TESTIMONIALS - 720px centered
   ============================================ */

.wtd-testimonials-section {
    max-width: 720px;
    margin: 0 auto 200px;
}

.wtd-testimonial-stack {
    position: relative;
    min-height: 400px;
    perspective: 1000px;
    padding-top: 36px;
}

.wtd-testimonial {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #fffbf8;
    border: 1px solid #bababa;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    max-height: 300px;
    overflow: hidden;
}

.wtd-testimonial.active {
    opacity: 1;
    z-index: 4;
    transform: translateX(-50%) translateY(36px);
    pointer-events: auto;
    height: auto;
    max-height: none;
    overflow: visible;
}

.wtd-testimonial.next-1 {
    opacity: 0.75;
    z-index: 3;
    transform: translateX(-50%) translateY(24px);
    height: 200px;
    max-height: 200px;
    overflow: hidden;
}

.wtd-testimonial.next-2 {
    opacity: 0.5;
    z-index: 2;
    transform: translateX(-50%) translateY(12px);
    height: 200px;
    max-height: 200px;
    overflow: hidden;
}

.wtd-testimonial.next-3 {
    opacity: 0.25;
    z-index: 1;
    transform: translateX(-50%) translateY(0px);
    height: 200px;
    max-height: 200px;
    overflow: hidden;
}

.wtd-testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    color: #5a5a5a;
}

.wtd-testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.wtd-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
}

.wtd-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wtd-testimonial-name {
    font-family: 'manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #0c0c0c;
}

.wtd-testimonial-role {
    font-size: 16px;
    color: #5a5a5a;
}

.wtd-testimonial-divider {
    width: 100%;
    height: 1px;
    background: #bababa;
}

.wtd-testimonial-metrics {
    display: flex;
    gap: 8px;
}

.wtd-testimonial-metric {
    flex: 1;
    text-align: center;
    padding: 12px;
}

.wtd-testimonial-metric-value {
    font-family: 'manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #0c0c0c;
    margin-bottom: 4px;
}

.wtd-testimonial-metric-label {
    font-size: 16px;
    line-height: 1.2;
    color: #5a5a5a;
}

/* ============================================
   FAQ - 1664px full width, split layout
   ============================================ */

.wtd-faq-section {
    max-width: 1664px;
    margin: 0 auto 200px;
    padding: 0 32px;
}

.wtd-faq-container {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.wtd-faq-title {
    font-family: 'biennale', serif;
    font-size: 56px;
    line-height: 1.2;
    color: #0c0c0c;
    flex-shrink: 0;
}

.wtd-faq-list {
    flex: 1;
    max-width: 764px;
}

.wtd-faq-item {
    border-bottom: 1px solid #bababa;
}

.wtd-faq-item:first-child {
    padding-top: 0;
}

.wtd-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
}

.wtd-faq-item:first-child .wtd-faq-question {
    padding-top: 0;
}

.wtd-faq-question-text {
    font-family: 'biennale', serif;
    font-size: 24px;
    line-height: 1.2;
    color: #0c0c0c;
    flex: 1;
    padding-right: 24px;
}

.wtd-faq-icon {
    height: 20px;
    width: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    transform: rotate(180deg);
}

.wtd-faq-item.active .wtd-faq-icon {
    transform: rotate(0deg);
}

.wtd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.wtd-faq-item.active .wtd-faq-answer {
    max-height: 400px;
    padding-bottom: 24px;
}

.wtd-faq-answer-text {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 715px;
}

/* ============================================
   SUCCESS POPUP STYLES
   ============================================ */

/* Hide modal title when success is visible */
.wtd-contact-sales-success.active ~ .wtd-modal-title,
.wtd-modal-content:has(.wtd-contact-sales-success[style*="display: flex"]) .wtd-modal-title,
.wtd-modal-content:has(.wtd-contact-sales-success[style*="display: block"]) .wtd-modal-title {
    display: none;
}

/* Success icon - beige/light brown color */
.wtd-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d4e4d1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.wtd-success-icon svg {
    width: 40px;
    height: 40px;
    stroke: #5a8a50;
    stroke-width: 2.5;
}

/* Beige/Light Brown Success Icon Override */
.wtd-success-icon-beige {
    background: #e6ddd4 !important;
}

.wtd-success-icon-beige svg {
    stroke: #a08060 !important;
}

/* ============================================
   FINAL CTA - 1664px centered
   ============================================ */

.wtd-final-cta-section {
    max-width: 1664px;
    margin: 0 auto 100px;
}

.wtd-final-cta {
    background: linear-gradient(to bottom, #f6f5f1 0%, #fffbf8 100%);
    border: 1px solid #bababa;
    border-radius: 24px;
    padding: 100px;
    text-align: center;
}

.wtd-final-cta-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 48px;
}

.wtd-final-cta-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 668px;
    margin: 0 auto 48px;
}

.wtd-final-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
}

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

@media (max-width: 1680px) {
    .wtd-hero-content,
    .wtd-problem-section,
    .wtd-impact-section {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .wtd-features-section,
    .wtd-process-section {
        padding: 70px;
        margin-bottom: 150px;
    }
    
    .wtd-stats-bar,
    .wtd-faq-section,
    .wtd-final-cta-section,
    .wtd-pricing-section {
        margin-left: 32px;
        margin-right: 32px;
    }
    
    .wtd-hero-bg-image {
        right: -5%;
        width: 65%;
    }
}

@media (max-width: 1280px) {
    /* Font size adjustments */
    .wtd-hero-title {
        font-size: 60px;
        line-height: 80px;
        max-width: 100%;
    }
    
    .wtd-section-title {
        font-size: 48px;
        max-width: 100%;
    }
    
    .wtd-wisdom-title {
        font-size: 40px;
        max-width: 100%;
    }
    
    /* Grid adjustments */
    .wtd-problem-grid-3 {
        flex-wrap: wrap;
    }
    
    .wtd-problem-grid-3 .wtd-problem-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 300px;
    }
    
    .wtd-impact-grid {
        flex-wrap: wrap;
    }
    
    .wtd-impact-grid .wtd-impact-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 250px;
    }
    
    .wtd-features-row {
        flex-wrap: wrap;
    }
    
    .wtd-features-row .wtd-feature-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 250px;
    }
    
    .wtd-process-grid {
        flex-wrap: wrap;
    }
    
    .wtd-process-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 300px;
    }
    
    .wtd-pricing-grid {
        flex-direction: column;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .wtd-pricing-card-dark {
        order: -1; /* Move Enterprise (dark) card to top on mobile */
    }
    
    .wtd-wisdom-box {
        flex-direction: column;
        padding: 70px;
    }
}

@media (max-width: 1024px) {
    /* Font sizes */
    .wtd-hero-title {
        font-size: 48px;
        line-height: 64px;
        max-width: 100%;
    }
    
    .wtd-section-title,
    .wtd-final-cta-title {
        font-size: 40px;
        max-width: 100%;
    }
    
    .wtd-wisdom-title {
        font-size: 36px;
        max-width: 100%;
    }
    
    .wtd-problem-title {
        font-size: 28px;
    }
    
    .wtd-stat-value,
    .wtd-roi-result-value {
        font-size: 36px;
    }
    
    /* ROI stacks */
    .wtd-roi-container {
        flex-direction: column;
    }
    
    .wtd-roi-box {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
    
    /* Padding adjustments */
    .wtd-stats-bar {
        padding: 48px 60px;
    }
    
    .wtd-stat {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    /* 16px margin on all sides */
    .wtd-page-wrap {
        padding: 0 16px;
    }
    
    .wtd-stats-bar,
    .wtd-features-section,
    .wtd-process-section,
    .wtd-final-cta-section,
    .wtd-faq-section {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Font sizes - reduced by ~10% for mobile */
    .wtd-hero-tag {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 16px;
    }
    
    .wtd-hero-title {
        font-size: 36px;
        line-height: 48px;
        max-width: 100%;
        white-space: normal;
    }
    
    /* Hide hero title <br> on mobile for natural wrapping */
    .wtd-hero-title br {
        display: none;
    }
    
    .wtd-section-title,
    .wtd-faq-title {
        font-size: 32px;
    }
    
    .wtd-final-cta-title {
        font-size: 32px;
    }
    
    .wtd-wisdom-title {
        font-size: 32px;
        white-space: normal !important;
        max-width: 100%;
    }
    
    /* Hide wisdom title <br> on mobile for natural wrapping */
    .wtd-wisdom-title br {
        display: none;
    }
    
    .wtd-wisdom-title strong {
        white-space: normal !important;
    }
    
    /* Section header spacing tighter on mobile */
    .wtd-section-header {
        margin-bottom: 48px;
    }
    
    .wtd-section-label {
        margin-bottom: 12px;
    }
    
    .wtd-section-title + .wtd-section-description {
        margin-top: 16px;
    }
    
    /* Wisdom image stretches full width */
    .wtd-wisdom-image {
        width: 100%;
    }
    
    .wtd-monk-image {
        width: 100%;
        max-width: 100%;
    }
    
    .wtd-wisdom-content {
        max-width: 100%;
    }
    
    .wtd-problem-title,
    .wtd-impact-title {
        font-size: 22px;
    }
    
    .wtd-section-description,
    .wtd-hero-subtitle,
    .wtd-final-cta-subtitle {
    font-size: 16px;
    }
    
    .wtd-feature-title,
    .wtd-process-title,
    .wtd-faq-question-text {
        font-size: 18px;
    }
    
    .wtd-feature-description,
    .wtd-problem-description,
    .wtd-impact-description,
    .wtd-process-description,
    .wtd-faq-answer-text {
        font-size: 16px;
    }
    
    .wtd-section-label {
        font-size: 13px;
    }
    
    /* All CTAs standardized - same size across page */
    .wtd-hero-cta .wtd-btn,
    .wtd-pricing-cta,
    .wtd-final-cta-buttons .wtd-btn,
    .wtd-roi-cta,
    .wtd-btn,
    .wtd-btn-primary-light,
    .wtd-pricing-card .wtd-btn,
    .wtd-pricing-card .wtd-btn-secondary,
    .wtd-pricing-card .wtd-btn-primary-light {
        font-size: 16px !important;
        padding: 18px 28px !important;
    }
    
    /* Stats bar smaller */
    .wtd-stat-value {
        font-size: 28px;
    }
    
    .wtd-stat-label {
        font-size: 13px;
    }
    
    /* Testimonial text smaller - match body text */
    .wtd-testimonial-quote {
        font-size: 16px;
    }
    
    .wtd-testimonial-name {
        font-size: 15px;
    }
    
    .wtd-testimonial-role {
        font-size: 14px;
    }
    
    .wtd-testimonial-metric-value {
        font-size: 18px;
    }
    
    .wtd-testimonial-metric-label {
        font-size: 14px;
    }
    
    /* Pricing card text smaller */
    .wtd-pricing-name {
        font-size: 28px;
    }
    
    .wtd-pricing-seats {
        font-size: 14px;
    }
    
    .wtd-pricing-pilot {
        font-size: 15px;
    }
    
    .wtd-pricing-feature-text {
        font-size: 16px;
    }
    
    /* ROI Calculator text smaller - match card descriptions */
    .wtd-roi-heading {
        font-size: 22px;
    }
    
    .wtd-roi-description {
        font-size: 15px;
    }
    
    .wtd-form-label {
        font-size: 14px;
    }
    
    .wtd-form-input,
    .wtd-form-select {
        font-size: 15px;
    }
    
    .wtd-challenge-label {
        font-size: 15px;
    }
    
    .wtd-roi-result-value {
        font-size: 28px;
    }
    
    .wtd-roi-result-label {
        font-size: 14px;
    }
    
    .wtd-roi-breakdown-title {
        font-size: 14px;
    }
    
    .wtd-roi-breakdown-label,
    .wtd-roi-breakdown-value {
        font-size: 15px;
    }
    
    .wtd-roi-metric-value {
        font-size: 15px;
    }
    
    .wtd-roi-metric-label {
        font-size: 15px;
    }
    
    .wtd-roi-disclaimer {
        font-size: 13px;
    }
    
    /* Integration caption smaller */
    .wtd-integration-caption {
        font-size: 13px;
    }
    
    /* Wisdom features checkmark text smaller - match descriptions */
    .wtd-wisdom-feature-text {
        font-size: 15px;
    }
    
    /* Icons smaller on mobile - 25% reduction */
    .wtd-feature-icon,
    .wtd-problem-icon,
    .wtd-wisdom-feature-icon,
    .wtd-pricing-feature-icon {
        width: 24px;
        height: 24px;
    }
    
    /* All grids become single column */
    .wtd-problem-grid-3,
    .wtd-impact-grid,
    .wtd-features-row,
    .wtd-process-grid {
        flex-direction: column;
    }
    
    /* Mobile: Horizontal borders between cards (no top/bottom borders) */
    .wtd-problem-card,
    .wtd-impact-card {
        flex: 1 1 auto;
        border-right: none !important;
        border-bottom: 1px solid #bababa;
    }
    
    .wtd-problem-card:last-child,
    .wtd-impact-card:last-child {
        border-bottom: none;
    }
    
    .wtd-feature-card,
    .wtd-process-card {
        flex: 1 1 auto;
        border-right: none !important;
        border-bottom: none;
    }
    
    /* Stats bar stacks */
    .wtd-stats-bar {
        flex-direction: column;
        padding: 32px 16px;
    }
    
    .wtd-stat {
        border-right: none;
        border-bottom: 1px solid #bababa;
        padding: 24px 0;
    }
    
    .wtd-stat:last-child {
        border-bottom: none;
    }
    
    .wtd-stat-value {
        font-size: 28px;
    }
    
    .wtd-stat-label,
    .wtd-stat-label-with-info {
        font-size: 13px;
        white-space: nowrap;
    }
    
    .wtd-stat-info-icon::after {
        width: 200px;
        font-size: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .wtd-stat-info-icon::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .wtd-hero {
        padding-top: 80px;
        padding-bottom: 200px;
    }
    
    /* FAQ stacks */
    .wtd-faq-container {
        flex-direction: column;
        gap: 48px;
    }
    
    /* Remove section horizontal padding - only use .wtd-page-wrap 16px */
    .wtd-hero-content,
    .wtd-problem-section,
    .wtd-impact-section,
    .wtd-faq-section {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Sections with internal padding */
    .wtd-features-section,
    .wtd-process-section {
        padding: 48px 16px;
    }
    
    .wtd-wisdom-box {
        padding: 48px 16px;
    }
    
    .wtd-meet-team-btn {
        justify-content: flex-start;
        font-size: 14px;
    }

    .wtd-final-cta {
        padding: 48px 24px;
    }
    
    /* ROI, Pricing, Testimonials - NO extra padding */
    .wtd-pricing-section,
    .wtd-testimonials-section,
    .wtd-roi-container {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .wtd-impact-section {
        padding-top: 0;
    }
    
    .wtd-roi-box {
        padding: 24px;
        margin: 0;
    }
    
    .wtd-pricing-card {
        padding: 48px 24px 32px;
        margin: 0;
    }
    
    .wtd-testimonial-stack {
        height: auto;
        min-height: 400px;
        padding-top: 0;
    }
    
    .wtd-testimonial {
        padding: 32px 24px;
        margin: 0;
        position: relative;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }
    
    .wtd-testimonial.active {
        position: relative;
        opacity: 1;
    }
    
    .wtd-testimonial:not(.active) {
        display: none;
    }
    
    .wtd-pricing-grid {
        margin: 0;
    }
    
    .wtd-section {
    margin-bottom: 100px;
}

    .wtd-process-grid {
        margin-bottom: 100px;
    margin-top: 100px;
}

    .wtd-features-grid {
        margin-top: 100px;
    }
    
    /* Cards stretch to edges (only page-wrap 16px margin) */
    .wtd-pricing-card {
        padding: 48px 24px 32px;
    }
    
    .wtd-testimonial {
        padding: 32px 24px;
    }
    
    /* Feature and process cards maintain internal padding */
    .wtd-feature-card,
    .wtd-process-card,
    .wtd-problem-card,
    .wtd-impact-card {
        padding: 24px;
    }
    
    .wtd-faq-container {
        padding: 0;
    }
    
    /* Prevent text overflow - allow natural wrapping */
    .wtd-hero-title,
    .wtd-section-title,
    .wtd-wisdom-title,
    .wtd-final-cta-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        max-width: 100%;
    }
    
    /* Ensure pricing section has no double margin */
    .wtd-pricing-section {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .wtd-pricing-grid {
        gap: 16px;
    }
    
    /* Mobile Hero - Full width background image */
    .wtd-hero {
        position: relative;
    }
    
    .wtd-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .wtd-hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 40% center;
        opacity: 0.3;
    }
    
    .wtd-hero-blur {
        display: none;
    }
    
    .wtd-monk-image {
        max-width: 100%;
        height: auto;
    }
    
    /* Integration logos: 4x2 grid */
    .wtd-integrations {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        max-width: 100%;
        justify-items: center;
    }
    
    .wtd-integration-logo {
        width: 64px;
        height: 64px;
    }
    
    .wtd-stats-bar {
        margin-top: -144px;
    }
    
    .wtd-hero {
        padding-bottom: 260px;
    }
    
    /* Buttons stack vertically with 8px gap */
    .wtd-hero-cta,
    .wtd-roi-buttons,
    .wtd-final-cta-buttons {
        flex-direction: column;
        gap: 8px !important;
    }
    
    .wtd-hero-cta .wtd-btn,
    .wtd-roi-buttons .wtd-btn,
    .wtd-final-cta-buttons .wtd-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wtd-hero-title {
        font-size: 30px;
        line-height: 40px;
        max-width: 100%;
    }
    
    .wtd-section-title,
    .wtd-wisdom-title {
        font-size: 26px;
        max-width: 100%;
    }
    
    .wtd-problem-title,
    .wtd-impact-title {
        font-size: 20px;
    }
    
    .wtd-section-description,
    .wtd-hero-subtitle,
    .wtd-final-cta-subtitle {
        font-size: 15px;
    }
    
    .wtd-feature-title,
    .wtd-process-title {
        font-size: 17px;
    }
    
    .wtd-feature-icon,
    .wtd-problem-icon,
    .wtd-wisdom-feature-icon,
    .wtd-pricing-feature-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Further reduction for very small mobile */
    /* All CTAs standardized - same size */
    .wtd-hero-cta .wtd-btn,
    .wtd-pricing-cta,
    .wtd-final-cta-buttons .wtd-btn,
    .wtd-roi-cta,
    .wtd-btn,
    .wtd-btn-primary-light,
    .wtd-pricing-card .wtd-btn,
    .wtd-pricing-card .wtd-btn-secondary,
    .wtd-pricing-card .wtd-btn-primary-light {
        font-size: 15px !important;
        padding: 18px 24px !important;
    }
    
    .wtd-stat-value {
        font-size: 24px;
    }
    
    .wtd-stat-label {
        font-size: 12px;
    }
    
    /* Testimonial text smaller */
    .wtd-testimonial-quote {
        font-size: 15px;
    }
    
    .wtd-testimonial-name {
        font-size: 14px;
    }
    
    .wtd-testimonial-role {
        font-size: 13px;
    }
    
    .wtd-testimonial-metric-value {
        font-size: 16px;
    }
    
    .wtd-testimonial-metric-label {
        font-size: 13px;
    }
    
    .wtd-pricing-name {
        font-size: 24px;
    }
    
    .wtd-pricing-seats {
        font-size: 13px;
    }
    
    .wtd-pricing-pilot {
        font-size: 14px;
    }
    
    .wtd-pricing-feature-text {
        font-size: 15px;
    }
    
    /* ROI Calculator smaller */
    .wtd-roi-heading {
        font-size: 20px;
    }
    
    .wtd-roi-description {
        font-size: 14px;
    }
    
    .wtd-roi-result-value {
        font-size: 24px;
    }
    
    .wtd-form-label {
        font-size: 13px;
    }
    
    .wtd-form-input,
    .wtd-form-select {
        font-size: 14px;
    }
    
    .wtd-challenge-label {
        font-size: 14px;
    }
    
    .wtd-roi-result-label {
        font-size: 13px;
    }
    
    .wtd-roi-breakdown-title {
        font-size: 13px;
    }
    
    .wtd-roi-breakdown-label,
    .wtd-roi-breakdown-value {
        font-size: 15px;
    }
    
    .wtd-roi-metric-value {
        font-size: 15px;
    }
    
    .wtd-roi-metric-label {
        font-size: 15px;
    }
    
    .wtd-roi-disclaimer {
        font-size: 12px;
    }
    
    .wtd-integration-caption {
        font-size: 12px;
    }
    
    .wtd-wisdom-feature-text {
        font-size: 14px;
    }
    
    .wtd-integrations {
        gap: 12px;
    }
    
    .wtd-integration-logo {
        width: 56px;
        height: 56px;
    }
    
    .wtd-hero {
        padding-bottom: 150px;
    }
    
    .wtd-stats-bar {
        margin-top: -84px;
        padding: 24px 16px;
    }
    
    .wtd-final-cta,
    .wtd-features-section,
    .wtd-process-section {
        padding: 32px 16px;
    }
    
    .wtd-wisdom-box {
        padding: 32px 16px;
    }
}
