.fx-rates-template-hero-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.frth-shell {
    width: 100%;
}

.frth-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
}

.frth-tag {
    margin: 0 0 16px;
    color: #4C6769;
    font-family: "Source Code Pro", monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.frth-heading {
    margin: 0 0 24px;
    color: #074F55;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.frth-description {
    margin-bottom: 48px;
    color: #4C6769;
    font-size: 20px;
    line-height: 1.5;
    max-width: 580px;
}

.frth-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.frth-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #074F55;
    border-radius: 12px;
    color: #fff;
    min-width: 220px;
}

.frth-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #D0F8FB;
    border-radius: 50%;
    flex-shrink: 0;
}

.frth-badge-icon svg {
    width: 18px;
    height: 18px;
}

.frth-badge-text {
    font-size: 16px;
    font-weight: 500;
}

/* Calculator Card */
.frth-calculator {
    background: #FFFFFF;
    border: 1px solid #E8EDEE;
    box-shadow: 0px 40px 80px rgba(7, 79, 85, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.frth-calc-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8EDEE;
}

.frth-calc-sub {
    margin: 0 0 8px;
    color: #4C6769;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.frth-calc-title {
    margin: 0;
    color: #074F55;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.frth-calc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.frth-calc-field label {
    display: block;
    margin-bottom: 8px;
    color: #074F55;
    font-size: 13px;
    font-weight: 600;
}

.frth-input-wrap {
    display: flex;
    align-items: center;
    background: #F4F7F7;
    border-radius: 8px;
    padding: 2px;
}

.frth-input-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #074F55;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.frth-currency-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #fff;
    border-radius: 6px;
    height: 44px;
    margin: 2px;
    cursor: pointer;
}

.frth-currency-select img {
    border-radius: 50%;
}

.frth-currency-select span {
    color: #074F55;
    font-size: 15px;
    font-weight: 600;
}

.frth-calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.frth-select-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F4F7F7;
    border-radius: 8px;
    padding: 14px 16px;
    cursor: pointer;
}

.frth-select-wrap span {
    color: #074F55;
    font-size: 16px;
    font-weight: 500;
}

.frth-calc-savings {
    margin-top: 12px;
    padding: 24px;
    background: #DDFBFE;
    border-radius: 12px;
}

.frth-savings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.frth-savings-label {
    color: #074F55;
    font-size: 14px;
    font-weight: 600;
}

.frth-savings-value {
    color: #074F55;
    font-size: 18px;
    font-weight: 600;
}

.frth-savings-desc {
    margin: 0;
    color: #4C6769;
    font-size: 13px;
    line-height: 1.4;
}

.frth-calc-btn {
    margin-top: 12px;
    background: #FF5C00;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

.frth-calc-btn:hover {
    opacity: 0.9;
}

@media (max-width: 1199px) {
    .frth-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .frth-content {
        text-align: center;
    }
    
    .frth-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .frth-badges {
        justify-content: center;
    }
    
    .frth-right {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .fx-rates-template-hero-section {
        padding: 60px 0;
    }
    
    .frth-heading {
        font-size: 40px;
    }
    
    .frth-calculator {
        padding: 24px;
    }
}