/* ========================================
   HOW IT WORKS - Specifieke styling
   Gebruikt de basis variabelen uit theme.css
   ======================================== */

/* Base wrapper - uniek voor how-it-works */
.tty-hiw-wrapper {
    position: relative;
    overflow: hidden;
    font-family: inherit;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Decoratief patroon achtergrond */
.tty-hiw-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 9%;
    width: 40%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v10m0 30v10m-20-25h10m30 0h10' stroke='%23005F5F' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='5' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='15' r='2' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='45' r='2' fill='%23005F5F'/%3E%3Ccircle cx='20' cy='30' r='2' fill='%23005F5F'/%3E%3Ccircle cx='40' cy='30' r='2' fill='%23005F5F'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Direct children boven patroon */
.tty-hiw-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Banner sectie */
.tty-hiw-banner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    overflow: hidden;
    margin-bottom: 40px;
    margin-top: 40px;
}

.tty-hiw-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.tty-hiw-subtitle {
    font-size: 24px;
    color: var(--tty-primary);
    margin: 0px 0px 20px 0px;
}

/* Container layout */
.tty-hiw-container {
    display: flex;
    gap: 40px;
}

/* Sidebar navigatie */
.tty-hiw-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.tty-hiw-nav-block,
.tty-hiw-links-block {
    background-color: var(--tty-bg-secondary);
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 20px;
}

.tty-hiw-nav-block h3,
.tty-hiw-links-block h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.tty-hiw-nav-list,
.tty-hiw-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tty-hiw-nav-list li,
.tty-hiw-quick-links li {
    margin-bottom: 10px;
}

.tty-hiw-nav-list a,
.tty-hiw-quick-links a {
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    transition: var(--tty-transition-normal);
}

.tty-hiw-nav-list a:hover,
.tty-hiw-quick-links a:hover,
.tty-hiw-nav-list a.active {
    background: var(--tty-bg-linear-graniet);
    color: var(--tty-text-light);
}

.tty-hiw-quick-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tty-hiw-quick-links a i {
    font-size: 12px;
    opacity: 0.7;
    transition: var(--tty-transition-normal);
}

.tty-hiw-quick-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Main content area */
.tty-hiw-content-main {
    flex: 1;
}

.tty-hiw-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.tty-hiw-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.tty-hiw-section h2 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.2;
}

.tty-hiw-block {
    background-color: var(--tty-bg-secondary);
    padding: 30px;
    border-radius: 30px;
}

.tty-hiw-block h3 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 600;
}

.tty-hiw-block h4 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* Approach Grid */
.tty-hiw-approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tty-hiw-approach-card {
    background-color: var(--tty-text-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--tty-transition-normal);
}

.tty-hiw-approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tty-hiw-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(0, 95, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-primary);
    font-size: 24px;
}

.tty-hiw-card-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.tty-hiw-card-content p {
    margin: 0;
    line-height: 1.5;
}

/* Information Panels */
.tty-hiw-info-panel {
    background-color: var(--tty-text-light);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
    overflow: hidden;
}

.tty-hiw-info-header {
    background: var(--tty-bg-linear-graniet);
    color: var(--tty-text-light);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.tty-hiw-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tty-hiw-info-header h3 {
    margin: 0;
    color: var(--tty-text-light);
    font-size: 22px;
}

.tty-hiw-info-content {
    padding: 25px;
}

.tty-hiw-info-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.tty-hiw-info-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.tty-hiw-info-list li:before {
    content: "✓";
    color: var(--tty-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tty-hiw-info-cta {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.tty-hiw-info-button,
.tty-hiw-detail-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, var(--tty-primary-light) 100%);
    color: var(--tty-text-light);
    text-decoration: none;
    border-radius: var(--tty-radius-lg);
    font-weight: 400;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(0, 95, 95, 0.3);
    transition: var(--tty-transition-normal);
    position: relative;
    overflow: hidden;
}

.tty-hiw-info-button::before,
.tty-hiw-detail-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.tty-hiw-info-button:hover::before,
.tty-hiw-detail-button:hover::before {
    left: 100%;
}

.tty-hiw-info-button:hover,
.tty-hiw-detail-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--tty-shadow-lg);
    color: var(--tty-text-light);
}

/* Prescription Panel - Modern additions */
.tty-hiw-prescription-panel .tty-hiw-info-header {
    background: linear-gradient(135deg, #005f5f 0%, #00a896 100%);
}

.tty-hiw-badge-pulse {
    margin-left: auto;
    position: relative;
}

.tty-hiw-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.tty-hiw-highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--tty-primary);
    margin-bottom: 10px;
}

.tty-hiw-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.tty-hiw-included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 95, 95, 0.05);
    border-radius: 10px;
    transition: var(--tty-transition-normal);
}

.tty-hiw-included-item:hover {
    background: rgba(0, 95, 95, 0.1);
    transform: translateX(5px);
}

.tty-hiw-included-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: white;
    border-radius: 50%;
    font-size: 16px;
}

.tty-hiw-price-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
    border-radius: 10px;
    margin-top: 20px;
    border-left: 3px solid var(--tty-primary);
}

.tty-hiw-price-indicator i {
    color: #00a896;
    font-size: 20px;
}

/* Countries Panel - Enhanced */
.countries-panel .tty-hiw-info-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
}

.tty-hiw-live-indicator {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tty-hiw-live-dot {
    width: 8px;
    height: 8px;
    background: #4fff4f;
    border-radius: 50%;
    animation: live-pulse 2s infinite;
    box-shadow: 0 0 10px rgba(79, 255, 79, 0.5);
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.tty-hiw-live-text {
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.tty-hiw-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.tty-hiw-country-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    border-radius: 10px;
    transition: var(--tty-transition-normal);
    position: relative;
    overflow: hidden;
}

.tty-hiw-country-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
    transition: left 0.6s ease;
}

.tty-hiw-country-item:hover::before {
    left: 100%;
}

.tty-hiw-country-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.15);
}

.tty-hiw-country-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.tty-hiw-country-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--tty-text-primary);
}

.tty-hiw-delivery-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #2c5aa0;
    opacity: 0.8;
}

.tty-hiw-delivery-time i {
    font-size: 14px;
}

.tty-hiw-countries-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.tty-hiw-expansion-notice,
.tty-hiw-delivery-promise {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(44, 90, 160, 0.05);
    border-radius: 8px;
    font-size: 14px;
}

.tty-hiw-expansion-notice i,
.tty-hiw-delivery-promise i {
    color: #4a90e2;
    font-size: 18px;
}

.tty-hiw-country-item .country-flag {
    font-size: 24px;
}

.tty-hiw-country-item .country-flag:hover {
    cursor: default;
}

/* Transform Box Panel */
.transform-box-panel .tty-hiw-info-header {
    background: linear-gradient(135deg, #e5924c 0%, #f0a860 100%);
}

.tty-hiw-transform-features {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.tty-hiw-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(229, 146, 76, 0.05);
    border-radius: 10px;
    transition: var(--tty-transition-normal);
}

.tty-hiw-feature:hover {
    background: rgba(229, 146, 76, 0.1);
    transform: translateX(5px);
}

.tty-hiw-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5924c 0%, #f0a860 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.tty-hiw-feature-text h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #e5924c;
    font-size: 18px;
}

.tty-hiw-feature-text p {
    margin: 0;
    line-height: 1.4;
}

/* Consultation Panel */
.consultation-panel .tty-hiw-info-header {
    background: linear-gradient(135deg, #3a897f 0%, #4db8a8 100%);
}

.tty-hiw-consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.tty-hiw-consultation-item {
    background: linear-gradient(135deg, rgba(58, 137, 127, 0.05) 0%, rgba(77, 184, 168, 0.05) 100%);
    border-radius: 15px;
    padding: 20px;
    transition: var(--tty-transition-normal);
    position: relative;
    overflow: hidden;
}

.tty-hiw-consultation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3a897f, #4db8a8, #3a897f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tty-hiw-consultation-item:hover::after {
    transform: scaleX(1);
}

.tty-hiw-consultation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.tty-hiw-consultation-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a897f 0%, #4db8a8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.tty-hiw-consultation-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #3a897f;
    font-size: 18px;
}

.tty-hiw-consultation-item p {
    margin: 0;
    line-height: 1.5;
}

/* Comparison Table */
.tty-hiw-comparison {
    margin: 40px 0 20px;
    text-align: center;
}

.tty-hiw-comparison h3 {
    margin-bottom: 5px;
}

.tty-hiw-table-wrapper {
    margin-top: 30px;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tty-hiw-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.tty-hiw-compare-table th {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: var(--tty-text-light);
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.tty-hiw-compare-table th:first-child {
    border-top-left-radius: 15px;
}

.tty-hiw-compare-table th:last-child {
    border-top-right-radius: 15px;
}

.tty-hiw-compare-table td {
    background-color: var(--tty-text-light);
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 15px;
}

.tty-hiw-compare-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.tty-hiw-compare-table tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.tty-hiw-compare-table tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.tty-hiw-compare-table .tty-column {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
    color: var(--tty-primary);
    text-align: center;
    font-weight: 500;
}

.tty-check, .tty-caution, .tty-partial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.tty-check i {
    color: #27ae60;
    margin-right: 5px;
}

.tty-caution i {
    color: #e74c3c;
    margin-right: 5px;
}

.tty-partial i {
    color: #f39c12;
    margin-right: 5px;
}

/* Tab Systems (Journey & FAQ) */
.tty-hiw-journey-tabs,
.tty-hiw-faq-tabs {
    margin-top: 30px;
}

.tty-hiw-tabs-header,
.tty-hiw-faq-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tty-hiw-tabs-container,
.tty-hiw-faq-container {
    position: relative;
    background-color: #eef8f8;
    border-radius: 30px;
    display: flex;
    padding: 5px;
    box-shadow: 0 3px 8px rgba(0, 95, 95, 0.1);
    width: auto;
    overflow: hidden;
    z-index: 1;
}

.tty-hiw-tabs-container {
    min-width: 340px;
}

.tty-hiw-faq-container {
    min-width: 400px;
}

.tty-hiw-tab-button,
.tty-hiw-faq-button {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #005f5f;
    cursor: pointer;
    position: relative;
    transition: var(--tty-transition-normal);
    z-index: 2;
    font-family: inherit;
    border-radius: 25px;
    flex: 1;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

.tty-hiw-tab-button.active,
.tty-hiw-faq-button.active {
    color: #005f5f;
    background: #fff;
}

/* Tab Sliders */
.tty-hiw-tab-slider,
.tty-hiw-faq-slider {
    position: absolute;
    height: calc(100% - 10px);
    top: 5px;
    background-color: var(--tty-text-light);
    border-radius: 25px;
    transition: var(--tty-transition-normal);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    left: 5px;
}

.tty-hiw-tab-slider {
    width: calc(50% - 10px);
}

.tty-hiw-faq-slider {
    width: calc(33.33% - 10px);
}

.tty-hiw-tab-button:nth-child(2).active ~ .tty-hiw-tab-slider {
    left: calc(50% + 5px);
}

.tty-hiw-faq-button:nth-child(2).active ~ .tty-hiw-faq-slider {
    left: calc(33.33% + 5px);
}

.tty-hiw-faq-button:nth-child(3).active ~ .tty-hiw-faq-slider {
    left: calc(66.66% + 5px);
}

/* Tab Content */
.tty-hiw-tab-content,
.tty-hiw-faq-content {
    display: none;
}

.tty-hiw-tab-content.active,
.tty-hiw-faq-content.active {
    display: block;
    animation: tty-hiw-fadeIn 0.5s ease;
}

@keyframes tty-hiw-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Journey Steps */
.tty-hiw-journey-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.tty-hiw-step {
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.5;
    transition: var(--tty-transition-normal);
    cursor: pointer;
}

.tty-hiw-step.active {
    opacity: 1;
}

.tty-hiw-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: var(--tty-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    transition: var(--tty-transition-normal);
}

.tty-hiw-step.active .tty-hiw-step-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 95, 95, 0.4);
}

.tty-hiw-step h4 {
    margin: 0 0 8px;
    font-weight: 600;
}

.tty-hiw-step p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.tty-hiw-step-connector {
    position: relative;
    flex: 0.3;
    display: flex;
    align-items: center;
}

.tty-hiw-connector-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 95, 95, 0.2), rgba(0, 168, 150, 0.2));
    width: 100%;
    position: relative;
    top: -35.5%;
}

.tty-hiw-connector-arrow {
    position: absolute;
    right: 0;
    top: 10%;
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(0, 95, 95, 0.2);
    border-right: 2px solid rgba(0, 95, 95, 0.2);
    transform: rotate(45deg);
}

/* Step Details */
.tty-hiw-step-details {
    background-color: linear-gradient(135deg, var(--tty-text-light) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-height: 350px;
    background-color: var(--tty-text-light);
}

.tty-hiw-detail {
    display: none;
    padding: 30px;
}

.tty-hiw-detail.active {
    display: block;
    animation: tty-hiw-fadeIn 0.5s ease;
}

.tty-hiw-detail h4 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 95, 95, 0.1);
    font-size: 20px;
    color: var(--tty-primary);
}

.tty-hiw-detail-content {
    padding: 0 10px;
}

.tty-hiw-detail-list {
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
}

.tty-hiw-detail-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.tty-hiw-detail-list li:before {
    content: "•";
    color: var(--tty-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.tty-hiw-detail-cta {
    margin-top: 25px;
    text-align: center;
}

/* FAQ List */
.tty-hiw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.tty-hiw-faq-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: var(--tty-transition-normal);
}

.tty-hiw-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tty-hiw-faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--tty-transition-normal);
}

.tty-hiw-faq-question:hover {
    background: rgba(0, 95, 95, 0.02);
}

.tty-hiw-faq-question h4 {
    margin: 0;
    font-weight: 600;
    color: var(--tty-text-primary);
    font-size: 17px;
}

.tty-hiw-toggle-icon {
    color: var(--tty-primary);
    transition: var(--tty-transition-normal);
}

.tty-hiw-faq-item.active .tty-hiw-toggle-icon {
    transform: rotate(180deg);
}

.tty-hiw-faq-answer {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.02) 0%, rgba(0, 168, 150, 0.02) 100%);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tty-hiw-faq-item.active .tty-hiw-faq-answer {
    padding: 15px 20px 20px;
    max-height: 300px;
}

.tty-hiw-faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--tty-text-secondary);
}

/* More Questions Section */
.tty-hiw-more-questions {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: linear-gradient(135deg, var(--tty-text-light) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: var(--tty-text-light);
}

.tty-hiw-more-questions h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--tty-primary);
}

.tty-hiw-more-questions p {
    margin-bottom: 25px;
    color: var(--tty-text-secondary);
}

.tty-hiw-question-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tty-hiw-question-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: var(--tty-text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--tty-transition-normal);
    box-shadow: 0 4px 10px rgba(0, 95, 95, 0.2);
}

.tty-hiw-question-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 95, 95, 0.3);
    color: var(--tty-text-light);
}

.tty-hiw-question-button.tty-hiw-secondary {
    background: var(--tty-text-light);
    color: var(--tty-primary);
    border: 2px solid var(--tty-primary);
    box-shadow: none;
}

.tty-hiw-question-button.tty-hiw-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
    color: var(--tty-primary);
    border-color: #00a896;
}

/* Get Started Section */
.tty-hiw-get-started {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 12px;
    margin: 60px 0 150px;
    overflow: hidden;
    position: relative;
    border-bottom: none;
}

.tty-hiw-get-started::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.tty-hiw-get-started-container {
    padding: 50px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tty-hiw-get-started h2 {
    color: var(--tty-text-light);
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 32px;
}

.tty-hiw-get-started p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.tty-hiw-start-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tty-hiw-start-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--tty-text-light);
    color: var(--tty-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--tty-transition-normal);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tty-hiw-start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--tty-primary);
}

.tty-hiw-start-button.tty-hiw-secondary {
    background-color: transparent;
    color: var(--tty-text-light);
    border: 2px solid white;
    box-shadow: none;
}

.tty-hiw-start-button.tty-hiw-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--tty-text-light);
}

/* Specific overrides */
#section-approach {
    margin-top: 20px;
}


.tty-hiw-faq-question .tty-hiw-toggle-icon {
    margin-right: -10px;
}

.tty-hiw-faq-question .fa-duotone.fa-chevron-down {
    margin-right: 0 !important;
}

.tty-hiw-get-started .heartbeat polyline {
    stroke: rgba(255, 255, 255, 0.4);
}

/* Performance optimizations */
.tty-hiw-wrapper * {
    will-change: auto;
}

.tty-hiw-step:hover,
.tty-hiw-approach-card:hover,
.tty-hiw-country-item:hover,
.tty-hiw-consultation-item:hover {
    will-change: transform;
}

/* Dark theme adjustments */
[data-theme="dark"] .tty-hiw-wrapper::before {
    opacity: 0.03;
}

[data-theme="dark"] .tty-hiw-approach-card,
[data-theme="dark"] .tty-hiw-step-details,
[data-theme="dark"] .tty-hiw-faq-item,
[data-theme="dark"] .tty-hiw-info-panel,
[data-theme="dark"] .tty-hiw-more-questions,
[data-theme="dark"] .tty-hiw-compare-table td {
    background-color: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-hiw-compare-table tr:nth-child(even) td {
    background-color: rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .tty-hiw-tabs-container,
[data-theme="dark"] .tty-hiw-faq-container {
    background-color: rgba(0, 95, 95, 0.2);
}

[data-theme="dark"] .tty-hiw-tab-slider,
[data-theme="dark"] .tty-hiw-faq-slider {
    background-color: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-hiw-consultation-item {
    background-color: rgba(58, 137, 127, 0.15);
}

[data-theme="dark"] .tty-hiw-included-item {
    background-color: rgba(0, 95, 95, 0.1);
}

[data-theme="dark"] .tty-hiw-country-item {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tty-hiw-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tty-hiw-transform-features,
    .tty-hiw-consultation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tty-hiw-included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .tty-hiw-container {
        flex-direction: column;
    }
    
    .tty-hiw-sidebar {
        position: relative;
        top: 0;
        flex: 1 1 auto;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .tty-hiw-banner {
        flex-direction: column;
    }
    
    .tty-hiw-journey-steps {
        flex-wrap: wrap;
    }
    
    .tty-hiw-step {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .tty-hiw-step-connector {
        display: none;
    }
    
    .tty-hiw-approach-grid,
    .tty-hiw-transform-features,
    .tty-hiw-consultation-grid {
        grid-template-columns: 1fr;
    }
    
    .tty-hiw-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tty-hiw-countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tty-hiw-wrapper::before {
        display: none;
    }
    
    .tty-hiw-info-header h3 {
        display: none;
    }
    
    .tty-hiw-banner {
        margin-top: 20px;
    }
    
    .tty-hiw-approach-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tty-hiw-card-icon {
        margin-bottom: 15px;
    }
    
    .tty-hiw-step-details {
        min-height: 400px;
    }
    
    .tty-hiw-tabs-container,
    .tty-hiw-faq-container {
        width: 100%;
        min-width: 0;
        flex-direction: column;
        border-radius: 20px;
    }
    
    .tty-hiw-tab-button,
    .tty-hiw-faq-button {
        padding: 8px 12px;
        width: 100%;
    }
    
    .tty-hiw-tab-slider,
    .tty-hiw-faq-slider {
        display: none;
    }
    
    .tty-hiw-detail-content {
        padding: 0;
    }
    
    .tty-hiw-question-buttons,
    .tty-hiw-start-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tty-hiw-question-button,
    .tty-hiw-start-button {
        width: 100%;
        justify-content: center;
    }
    
    .tty-hiw-feature,
    .tty-hiw-consultation-item {
        margin-bottom: 20px;
    }
    
    .tty-hiw-included-grid {
        grid-template-columns: 1fr;
    }
    
    .tty-hiw-countries-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tty-hiw-wrapper {
        padding: 0 15px;
    }
    
    .tty-hiw-block {
        padding: 20px 15px;
    }
    
    .tty-hiw-section h2 {
        font-size: 26px;
    }
    
    .tty-hiw-step-details {
        min-height: 450px;
    }
    
    .tty-hiw-detail h4 {
        font-size: 18px;
    }
    
    .tty-hiw-detail-cta {
        text-align: center;
    }
    
    .tty-hiw-get-started-container {
        padding: 30px 20px;
    }
    
    .tty-hiw-get-started h2 {
        font-size: 24px;
    }
    
    .tty-hiw-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tty-hiw-feature-icon,
    .tty-hiw-consultation-icon {
        margin-bottom: 10px;
    }
    
    .tty-hiw-countries-grid {
        grid-template-columns: 1fr;
    }
    
    .tty-hiw-country-item {
        padding: 10px;
    }
    
    .tty-hiw-info-button,
    .tty-hiw-detail-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .tty-hiw-comparison h3 {
        font-size: 24px;
    }
    
    .tty-hiw-compare-table {
        font-size: 13px;
    }
    
    .tty-hiw-compare-table th,
    .tty-hiw-compare-table td {
        padding: 10px;
    }
}

/* Print styles */
@media print {
    .tty-hiw-sidebar,
    .tty-hiw-get-started,
    .tty-hiw-info-cta,
    .tty-hiw-detail-cta {
        display: none;
    }
    
    .tty-hiw-container {
        flex-direction: column;
    }
    
    .tty-hiw-tab-content,
    .tty-hiw-faq-content,
    .tty-hiw-detail {
        display: block !important;
    }
    
    .tty-hiw-faq-answer {
        max-height: none !important;
        padding: 15px 20px !important;
    }
}